[PATCH] kobject/hotplug split - devices core
kobject_add() and kobject_del() don't emit hotplug events anymore. Do it ourselves if we are finished populating the device directory. Signed-off-by: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Родитель
b41148c0d8
Коммит
e57cd73e2e
|
@ -260,6 +260,8 @@ int device_add(struct device *dev)
|
||||||
/* notify platform of device entry */
|
/* notify platform of device entry */
|
||||||
if (platform_notify)
|
if (platform_notify)
|
||||||
platform_notify(dev);
|
platform_notify(dev);
|
||||||
|
|
||||||
|
kobject_hotplug(&dev->kobj, KOBJ_ADD);
|
||||||
Done:
|
Done:
|
||||||
put_device(dev);
|
put_device(dev);
|
||||||
return error;
|
return error;
|
||||||
|
@ -349,6 +351,7 @@ void device_del(struct device * dev)
|
||||||
platform_notify_remove(dev);
|
platform_notify_remove(dev);
|
||||||
bus_remove_device(dev);
|
bus_remove_device(dev);
|
||||||
device_pm_remove(dev);
|
device_pm_remove(dev);
|
||||||
|
kobject_hotplug(&dev->kobj, KOBJ_REMOVE);
|
||||||
kobject_del(&dev->kobj);
|
kobject_del(&dev->kobj);
|
||||||
if (parent)
|
if (parent)
|
||||||
put_device(parent);
|
put_device(parent);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче