Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7232800b authored by Ming Lei's avatar Ming Lei Committed by Greg Kroah-Hartman
Browse files

driver core:fix duplicate removing driver link in __device_release_driver



In __device_release_driver(),driver_sysfs_remove() has removed the
driver link under device dir in sysfs, but sysfs_remove_link() is
called again to do such thing. Remove the duplicate call to
sys_remove_link().

Signed-off-by: default avatarMing Lei <tom.leiming@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent ec0676ee
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -298,7 +298,6 @@ static void __device_release_driver(struct device *dev)
	drv = dev->driver;
	drv = dev->driver;
	if (drv) {
	if (drv) {
		driver_sysfs_remove(dev);
		driver_sysfs_remove(dev);
		sysfs_remove_link(&dev->kobj, "driver");


		if (dev->bus)
		if (dev->bus)
			blocking_notifier_call_chain(&dev->bus->p->bus_notifier,
			blocking_notifier_call_chain(&dev->bus->p->bus_notifier,