software nodes: Split software_node_notify()
Split software_node_notify_remove) out of software_node_notify() and make device_platform_notify() call the latter on device addition and the former on device removal. While at it, put the headers of the above functions into base.h, because they don't need to be present in a global header file. No intentional functional impact. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
@@ -2003,16 +2003,15 @@ static inline int device_is_not_partition(struct device *dev)
|
||||
static int
|
||||
device_platform_notify(struct device *dev, enum kobject_action action)
|
||||
{
|
||||
int ret;
|
||||
|
||||
if (action == KOBJ_ADD)
|
||||
acpi_device_notify(dev);
|
||||
else if (action == KOBJ_REMOVE)
|
||||
acpi_device_notify_remove(dev);
|
||||
|
||||
ret = software_node_notify(dev, action);
|
||||
if (ret)
|
||||
return ret;
|
||||
if (action == KOBJ_ADD)
|
||||
software_node_notify(dev);
|
||||
else if (action == KOBJ_REMOVE)
|
||||
software_node_notify_remove(dev);
|
||||
|
||||
if (platform_notify && action == KOBJ_ADD)
|
||||
platform_notify(dev);
|
||||
|
||||
Reference in New Issue
Block a user