> +struct device * bus_find_device(struct bus_type * bus, struct device * start,
> + void * data, int (*match)(struct device *, void *))
> +{
> + struct klist_iter i;
> + struct device * dev;
> +
> + if (!bus)
> + return NULL;
> +
> + klist_iter_init_node(&bus->klist_devices, &i,
> + (start ? &start->knode_bus : NULL));
> + while ((dev = next_device(&i)))
> + if (match(dev, data))
> + break;
> + klist_iter_exit(&i);
> + return dev;
does the klist magic somehow grab a reference for you?
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]