[PATCH] Use device_for_each_child() to unregister devices in nodemgr_remove_host_dev()

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

diff -Nru a/drivers/ieee1394/nodemgr.c b/drivers/ieee1394/nodemgr.c
This commit is contained in:
gregkh@suse.de 2005-03-25 11:45:31 -08:00 committed by Greg Kroah-Hartman
parent ff710710ea
commit 64360322ab

View file

@ -695,14 +695,15 @@ static void nodemgr_remove_ne(struct node_entry *ne)
put_device(dev);
}
static int __nodemgr_remove_host_dev(struct device *dev, void *data)
{
nodemgr_remove_ne(container_of(dev, struct node_entry, device));
return 0;
}
static void nodemgr_remove_host_dev(struct device *dev)
{
struct device *ne_dev, *next;
list_for_each_entry_safe(ne_dev, next, &dev->children, node)
nodemgr_remove_ne(container_of(ne_dev, struct node_entry, device));
device_for_each_child(dev, NULL, __nodemgr_remove_host_dev);
sysfs_remove_link(&dev->kobj, "irm_id");
sysfs_remove_link(&dev->kobj, "busmgr_id");
sysfs_remove_link(&dev->kobj, "host_id");