aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/base/core.c
diff options
context:
space:
mode:
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>2021-07-12 19:27:12 +0200
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2021-07-16 19:17:05 +0200
commit384f5a857baeba88cf013b36999a97b471e4bd9c (patch)
treec463bf865eab9d338b916f752ffb1ce29df4c272 /drivers/base/core.c
parentACPI: glue: Eliminate acpi_platform_notify() (diff)
downloadwireguard-linux-384f5a857baeba88cf013b36999a97b471e4bd9c.tar.xz
wireguard-linux-384f5a857baeba88cf013b36999a97b471e4bd9c.zip
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>
Diffstat (limited to 'drivers/base/core.c')
-rw-r--r--drivers/base/core.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/base/core.c b/drivers/base/core.c
index 1521915c0330..6cf9c500fe93 100644
--- a/drivers/base/core.c
+++ b/drivers/base/core.c
@@ -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);