]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
platform/x86: lg-laptop: Drop debug-only ACPI notify handler
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Thu, 12 Mar 2026 11:14:03 +0000 (12:14 +0100)
committerIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Tue, 17 Mar 2026 17:20:44 +0000 (19:20 +0200)
To facilitate subsequent conversion of the driver to using struct
platform_driver instead of struct acpi_driver, drop the debug-only
notify handler method from the driver.

No intentional functional impact beyond debug.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Link: https://patch.msgid.link/3346280.5fSG56mABF@rafael.j.wysocki
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
drivers/platform/x86/lg-laptop.c

index 61ef7a218a80d64185bcd14e304b73ac07c63827..7122d96abf86dcf51624d359129615b631281554 100644 (file)
@@ -271,11 +271,6 @@ static void wmi_input_setup(void)
        }
 }
 
-static void acpi_notify(struct acpi_device *device, u32 event)
-{
-       acpi_handle_debug(device->handle, "notify: %d\n", event);
-}
-
 static ssize_t fan_mode_store(struct device *dev,
                              struct device_attribute *attr,
                              const char *buffer, size_t count)
@@ -906,7 +901,6 @@ static struct acpi_driver acpi_driver = {
        .ops = {
                .add = acpi_add,
                .remove = acpi_remove,
-               .notify = acpi_notify,
                },
 };