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:
Rafael J. Wysocki
2021-07-12 19:27:12 +02:00
parent d0b8e39831
commit 384f5a857b
4 changed files with 39 additions and 36 deletions

View File

@@ -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);