diff options
| author | 2007-12-06 02:24:40 +0800 | |
|---|---|---|
| committer | 2008-01-24 20:40:41 -0800 | |
| commit | db1118a460c7bfd20278955cbf56c0b283a9701f (patch) | |
| tree | 80b3f5f86b73bd30b32d3df711dd2345bbadcdfa /drivers/base/attribute_container.c | |
| parent | kobject: add sample code for how to use ksets/ktypes/kobjects (diff) | |
| download | wireguard-linux-db1118a460c7bfd20278955cbf56c0b283a9701f.tar.xz wireguard-linux-db1118a460c7bfd20278955cbf56c0b283a9701f.zip | |
Driver core: use LIST_HEAD instead of call to INIT_LIST_HEAD in __init
LIST_HEAD has been widely used, so switch to this simpler method.
Signed-off-by: Denis Cheng <crquan@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/base/attribute_container.c')
| -rw-r--r-- | drivers/base/attribute_container.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/base/attribute_container.c b/drivers/base/attribute_container.c index 7370d7cf5988..d4dfb97de3b0 100644 --- a/drivers/base/attribute_container.c +++ b/drivers/base/attribute_container.c @@ -61,7 +61,7 @@ attribute_container_classdev_to_container(struct class_device *classdev) } EXPORT_SYMBOL_GPL(attribute_container_classdev_to_container); -static struct list_head attribute_container_list; +static LIST_HEAD(attribute_container_list); static DEFINE_MUTEX(attribute_container_mutex); @@ -429,10 +429,3 @@ attribute_container_find_class_device(struct attribute_container *cont, return cdev; } EXPORT_SYMBOL_GPL(attribute_container_find_class_device); - -int __init -attribute_container_init(void) -{ - INIT_LIST_HEAD(&attribute_container_list); - return 0; -} |
