summaryrefslogtreecommitdiffstats
path: root/drivers/acpi/battery.c
diff options
context:
space:
mode:
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>2023-10-06 17:32:51 +0200
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2023-10-06 17:32:51 +0200
commit470508f63ad2483b1ae82ed67cd504ad408b2a35 (patch)
treed5c0a05b6eedc2c5c8e9b7bcb7500eea0dfe4b12 /drivers/acpi/battery.c
parent5f3c10ac34ec2dc199e5bcc3ff856b42cf0e12df (diff)
downloadlinux-stable-470508f63ad2483b1ae82ed67cd504ad408b2a35.tar.gz
linux-stable-470508f63ad2483b1ae82ed67cd504ad408b2a35.tar.bz2
linux-stable-470508f63ad2483b1ae82ed67cd504ad408b2a35.zip
ACPI: bus: Add context argument to acpi_dev_install_notify_handler()
Add void *context arrgument to the list of arguments of acpi_dev_install_notify_handler() and modify it to pass that argument as context to acpi_install_notify_handler() instead of its first argument which is problematic in general (for example, if platform drivers used it, they would rather get struct platform_device pointers or pointers to their private data from the context arguments of their notify handlers). Make all of the current callers of acpi_dev_install_notify_handler() take this change into account so as to avoid altering the general functionality. Co-developed-by: Michal Wilczynski <michal.wilczynski@intel.com> Signed-off-by: Michal Wilczynski <michal.wilczynski@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/battery.c')
-rw-r--r--drivers/acpi/battery.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/battery.c b/drivers/acpi/battery.c
index 969bf81e8d54..b379401ff1c2 100644
--- a/drivers/acpi/battery.c
+++ b/drivers/acpi/battery.c
@@ -1214,7 +1214,7 @@ static int acpi_battery_add(struct acpi_device *device)
device_init_wakeup(&device->dev, 1);
result = acpi_dev_install_notify_handler(device, ACPI_ALL_NOTIFY,
- acpi_battery_notify);
+ acpi_battery_notify, device);
if (result)
goto fail_pm;