mirror of
https://github.com/adulau/aha.git
synced 2025-01-01 05:36:24 +00:00
[PATCH] Driver core: Use klist_del() instead of klist_remove().
Use klist_del() instead of klist_remove() when unregistering devices. This will prevent a deadlock when executing a recursive unregister using device_for_each_child(). Signed-off-by Patrick Mochel <mochel@digitalimplant.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
23d3d602cb
commit
d62c0f9fd2
1 changed files with 1 additions and 1 deletions
|
@ -333,7 +333,7 @@ void device_del(struct device * dev)
|
||||||
struct device * parent = dev->parent;
|
struct device * parent = dev->parent;
|
||||||
|
|
||||||
if (parent)
|
if (parent)
|
||||||
klist_remove(&dev->knode_parent);
|
klist_del(&dev->knode_parent);
|
||||||
|
|
||||||
/* Notify the platform of the removal, in case they
|
/* Notify the platform of the removal, in case they
|
||||||
* need to do anything...
|
* need to do anything...
|
||||||
|
|
Loading…
Reference in a new issue