Driver Core: do not oops when driver_unregister() is called for unregistered drivers
We also fix a problem with cleaning up properly when initializing drivers and devices, so checks like this will work successfully. Portions of the patch by Linus and Greg and Ingo. Reported-by: Ozan Çağlayan <ozan@pardus.org.tr> Signed-off-by: Kay Sievers <kay.sievers@vrfy.org> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Ingo Molnar <mingo@elte.hu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
086a377edc
commit
5c8563d773
@@ -257,6 +257,10 @@ EXPORT_SYMBOL_GPL(driver_register);
|
||||
*/
|
||||
void driver_unregister(struct device_driver *drv)
|
||||
{
|
||||
if (!drv || !drv->p) {
|
||||
WARN(1, "Unexpected driver unregister!\n");
|
||||
return;
|
||||
}
|
||||
driver_remove_groups(drv, drv->groups);
|
||||
bus_remove_driver(drv);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user