Commit 93ead7c9 authored by Gimcuan Hui's avatar Gimcuan Hui Committed by Greg Kroah-Hartman

drivers: base: omit redundant interations

When error happens, these interators return the error, no interation should
be continued, so make the change for getting out of while immediately.
Signed-off-by: default avatarGimcuan Hui <gimcuan@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 73cf7e11
...@@ -307,7 +307,7 @@ int bus_for_each_dev(struct bus_type *bus, struct device *start, ...@@ -307,7 +307,7 @@ int bus_for_each_dev(struct bus_type *bus, struct device *start,
klist_iter_init_node(&bus->p->klist_devices, &i, klist_iter_init_node(&bus->p->klist_devices, &i,
(start ? &start->p->knode_bus : NULL)); (start ? &start->p->knode_bus : NULL));
while ((dev = next_device(&i)) && !error) while (!error && (dev = next_device(&i)))
error = fn(dev, data); error = fn(dev, data);
klist_iter_exit(&i); klist_iter_exit(&i);
return error; return error;
......
...@@ -2114,7 +2114,7 @@ int device_for_each_child(struct device *parent, void *data, ...@@ -2114,7 +2114,7 @@ int device_for_each_child(struct device *parent, void *data,
return 0; return 0;
klist_iter_init(&parent->p->klist_children, &i); klist_iter_init(&parent->p->klist_children, &i);
while ((child = next_device(&i)) && !error) while (!error && (child = next_device(&i)))
error = fn(child, data); error = fn(child, data);
klist_iter_exit(&i); klist_iter_exit(&i);
return error; return error;
......
...@@ -50,7 +50,7 @@ int driver_for_each_device(struct device_driver *drv, struct device *start, ...@@ -50,7 +50,7 @@ int driver_for_each_device(struct device_driver *drv, struct device *start,
klist_iter_init_node(&drv->p->klist_devices, &i, klist_iter_init_node(&drv->p->klist_devices, &i,
start ? &start->p->knode_driver : NULL); start ? &start->p->knode_driver : NULL);
while ((dev = next_device(&i)) && !error) while (!error && (dev = next_device(&i)))
error = fn(dev, data); error = fn(dev, data);
klist_iter_exit(&i); klist_iter_exit(&i);
return error; return error;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment