summaryrefslogtreecommitdiff
path: root/drivers/base/core.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/base/core.c')
-rw-r--r--drivers/base/core.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/base/core.c b/drivers/base/core.c
index cadcade65825..1521915c0330 100644
--- a/drivers/base/core.c
+++ b/drivers/base/core.c
@@ -2005,9 +2005,10 @@ device_platform_notify(struct device *dev, enum kobject_action action)
{
int ret;
- ret = acpi_platform_notify(dev, action);
- if (ret)
- return 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)