diff options
author | greg@kroah.com <greg@kroah.com> | 2004-01-04 08:18:16 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:13:14 -0700 |
commit | 843d1a84b9be2b3e11f26186fee24676f5dc3f53 (patch) | |
tree | 1abb3d2b5be532222a02b7b0fe8d4f40b02a625a /namedev_parse.c | |
parent | 8eb38ef882192445bd0e012351a6192a2968a76c (diff) |
[PATCH] replace list_for_each with list_for_each_entry, saving a few lines of code.
Diffstat (limited to 'namedev_parse.c')
-rw-r--r-- | namedev_parse.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/namedev_parse.c b/namedev_parse.c index 02ffb0a3e7..de29057a95 100644 --- a/namedev_parse.c +++ b/namedev_parse.c @@ -117,12 +117,10 @@ void dump_config_dev(struct config_device *dev) void dump_config_dev_list(void) { - struct list_head *tmp; + struct config_device *dev; - list_for_each(tmp, &config_device_list) { - struct config_device *dev = list_entry(tmp, struct config_device, node); + list_for_each_entry(dev, &config_device_list, node) dump_config_dev(dev); - } } void dump_perm_dev(struct perm_device *dev) @@ -133,12 +131,10 @@ void dump_perm_dev(struct perm_device *dev) void dump_perm_dev_list(void) { - struct list_head *tmp; + struct perm_device *dev; - list_for_each(tmp, &perm_device_list) { - struct perm_device *dev = list_entry(tmp, struct perm_device, node); + list_for_each_entry(dev, &perm_device_list, node) dump_perm_dev(dev); - } } |