diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-05-28 12:28:39 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-07-22 00:54:51 -0400 |
commit | 97ae69fdbaa71a8f7dbc20bf10fb349d1759152f (patch) | |
tree | 9d8c3842cf7e1d43d67c265e5e69a964df541cd1 /drivers/base/class.c | |
parent | 7c71448b8aa80123fc521563d5f7c63a099d97ab (diff) |
class: rename "devices" to "class_devices" in internal class structure
This renames the struct class "devices" field to be "class_devices" to
make things easier when struct bus_type and struct class merge in the
future. It also makes grepping for fields easier as well.
Based on an idea from Kay.
Cc: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base/class.c')
-rw-r--r-- | drivers/base/class.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/base/class.c b/drivers/base/class.c index 06f09c929a91..9947560def65 100644 --- a/drivers/base/class.c +++ b/drivers/base/class.c | |||
@@ -143,7 +143,7 @@ int class_register(struct class *cls) | |||
143 | cp = kzalloc(sizeof(*cp), GFP_KERNEL); | 143 | cp = kzalloc(sizeof(*cp), GFP_KERNEL); |
144 | if (!cp) | 144 | if (!cp) |
145 | return -ENOMEM; | 145 | return -ENOMEM; |
146 | INIT_LIST_HEAD(&cp->devices); | 146 | INIT_LIST_HEAD(&cp->class_devices); |
147 | INIT_LIST_HEAD(&cp->interfaces); | 147 | INIT_LIST_HEAD(&cp->interfaces); |
148 | kset_init(&cp->class_dirs); | 148 | kset_init(&cp->class_dirs); |
149 | init_MUTEX(&cp->sem); | 149 | init_MUTEX(&cp->sem); |
@@ -290,7 +290,7 @@ int class_for_each_device(struct class *class, struct device *start, | |||
290 | if (!class) | 290 | if (!class) |
291 | return -EINVAL; | 291 | return -EINVAL; |
292 | down(&class->p->sem); | 292 | down(&class->p->sem); |
293 | list_for_each_entry(dev, &class->p->devices, node) { | 293 | list_for_each_entry(dev, &class->p->class_devices, node) { |
294 | if (start) { | 294 | if (start) { |
295 | if (start == dev) | 295 | if (start == dev) |
296 | start = NULL; | 296 | start = NULL; |
@@ -340,7 +340,7 @@ struct device *class_find_device(struct class *class, struct device *start, | |||
340 | return NULL; | 340 | return NULL; |
341 | 341 | ||
342 | down(&class->p->sem); | 342 | down(&class->p->sem); |
343 | list_for_each_entry(dev, &class->p->devices, node) { | 343 | list_for_each_entry(dev, &class->p->class_devices, node) { |
344 | if (start) { | 344 | if (start) { |
345 | if (start == dev) | 345 | if (start == dev) |
346 | start = NULL; | 346 | start = NULL; |
@@ -374,7 +374,7 @@ int class_interface_register(struct class_interface *class_intf) | |||
374 | down(&parent->p->sem); | 374 | down(&parent->p->sem); |
375 | list_add_tail(&class_intf->node, &parent->p->interfaces); | 375 | list_add_tail(&class_intf->node, &parent->p->interfaces); |
376 | if (class_intf->add_dev) { | 376 | if (class_intf->add_dev) { |
377 | list_for_each_entry(dev, &parent->p->devices, node) | 377 | list_for_each_entry(dev, &parent->p->class_devices, node) |
378 | class_intf->add_dev(dev, class_intf); | 378 | class_intf->add_dev(dev, class_intf); |
379 | } | 379 | } |
380 | up(&parent->p->sem); | 380 | up(&parent->p->sem); |
@@ -393,7 +393,7 @@ void class_interface_unregister(struct class_interface *class_intf) | |||
393 | down(&parent->p->sem); | 393 | down(&parent->p->sem); |
394 | list_del_init(&class_intf->node); | 394 | list_del_init(&class_intf->node); |
395 | if (class_intf->remove_dev) { | 395 | if (class_intf->remove_dev) { |
396 | list_for_each_entry(dev, &parent->p->devices, node) | 396 | list_for_each_entry(dev, &parent->p->class_devices, node) |
397 | class_intf->remove_dev(dev, class_intf); | 397 | class_intf->remove_dev(dev, class_intf); |
398 | } | 398 | } |
399 | up(&parent->p->sem); | 399 | up(&parent->p->sem); |