aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authormochel@digitalimplant.org <mochel@digitalimplant.org>2005-03-24 18:58:45 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2005-06-20 15:15:19 -0700
commit0956af53afea290c5676c75249fc2c180d831375 (patch)
tree43ba929157462d22b6320a8924823a56cb292569 /drivers
parent[PATCH] Remove struct device::driver_list. (diff)
downloadlinux-dev-0956af53afea290c5676c75249fc2c180d831375.tar.xz
linux-dev-0956af53afea290c5676c75249fc2c180d831375.zip
[PATCH] Call klist_del() instead of klist_remove().
- Can't wait on removing the current item in the list (the positive refcount *because* we are using it causes it to deadlock). Signed-off-by: Patrick Mochel <mochel@digitalimplant.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/base/dd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/dd.c b/drivers/base/dd.c
index 85042ada8a5b..159e0623a681 100644
--- a/drivers/base/dd.c
+++ b/drivers/base/dd.c
@@ -177,7 +177,7 @@ void device_release_driver(struct device * dev)
sysfs_remove_link(&drv->kobj, kobject_name(&dev->kobj));
sysfs_remove_link(&dev->kobj, "driver");
- klist_remove(&dev->knode_driver);
+ klist_del(&dev->knode_driver);
down(&dev->sem);
if (drv->remove)