From: mochel@digitalimplant.org Date: Mon, 21 Mar 2005 19:07:54 +0000 (-0800) Subject: [PATCH] Use driver_for_each_device() in drivers/pnp/driver.c instead of manually... X-Git-Tag: v2.6.13-rc4~130^2~203^2^2~54 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8d618afdd61ccaacbab4976a556c0ddcf36e2d8a;p=profile%2Fivi%2Fkernel-x86-ivi.git [PATCH] Use driver_for_each_device() in drivers/pnp/driver.c instead of manually walking list. Signed-off-by: Patrick Mochel Signed-off-by: Greg Kroah-Hartman diff -Nru a/drivers/pnp/driver.c b/drivers/pnp/driver.c --- diff --git a/drivers/pnp/driver.c b/drivers/pnp/driver.c index d64c1ca..1d037c2 100644 --- a/drivers/pnp/driver.c +++ b/drivers/pnp/driver.c @@ -160,10 +160,16 @@ struct bus_type pnp_bus_type = { }; +static int count_devices(struct device * dev, void * c) +{ + int * count = c; + (*count)++; + return 0; +} + int pnp_register_driver(struct pnp_driver *drv) { int count; - struct list_head *pos; pnp_dbg("the driver '%s' has been registered", drv->name); @@ -177,9 +183,7 @@ int pnp_register_driver(struct pnp_driver *drv) /* get the number of initial matches */ if (count >= 0){ count = 0; - list_for_each(pos,&drv->driver.devices){ - count++; - } + driver_for_each_device(&drv->driver, NULL, &count, count_devices); } return count; }