dect
/
linux-2.6
Archived
13
0
Fork 0

[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>
This commit is contained in:
mochel@digitalimplant.org 2005-03-24 18:58:45 -08:00 committed by Greg Kroah-Hartman
parent 63c4f204ff
commit 0956af53af
1 changed files with 1 additions and 1 deletions

View File

@ -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)