Re: [PATCH v1 1/4] platform/x86: asus-laptop: Register ACPI notify handler directly
From: Denis Benato
Date: Sat Feb 28 2026 - 12:00:07 EST
On 2/28/26 16:10, Rafael J. Wysocki wrote:
> From: "Rafael J. Wysocki" <rafael.j.wysocki@xxxxxxxxx>
>
> To facilitate subsequent conversion of the driver to a platform one,
> make it install an ACPI notify handler directly instead of using
> a .notify() callback in struct acpi_driver.
>
> No intentional functional impact.
Reviewed-by: Denis Benato <denis.benato@xxxxxxxxx>
> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@xxxxxxxxx>
> ---
> drivers/platform/x86/asus-laptop.c | 11 ++++++++---
> 1 file changed, 8 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c
> index d96f6af26ff7..c927665dfa96 100644
> --- a/drivers/platform/x86/asus-laptop.c
> +++ b/drivers/platform/x86/asus-laptop.c
> @@ -1517,9 +1517,9 @@ static void asus_input_exit(struct asus_laptop *asus)
> /*
> * ACPI driver
> */
> -static void asus_acpi_notify(struct acpi_device *device, u32 event)
> +static void asus_acpi_notify(acpi_handle handle, u32 event, void *data)
> {
> - struct asus_laptop *asus = acpi_driver_data(device);
> + struct asus_laptop *asus = data;
> u16 count;
>
> /* TODO Find a better way to handle events count. */
> @@ -1881,6 +1881,11 @@ static int asus_acpi_add(struct acpi_device *device)
> if (result && result != -ENODEV)
> goto fail_pega_rfkill;
>
> + result = acpi_dev_install_notify_handler(device, ACPI_DEVICE_NOTIFY,
> + asus_acpi_notify, asus);
> + if (result)
> + goto fail_pega_rfkill;
> +
> asus_device_present = true;
> return 0;
>
> @@ -1906,6 +1911,7 @@ static void asus_acpi_remove(struct acpi_device *device)
> {
> struct asus_laptop *asus = acpi_driver_data(device);
>
> + acpi_dev_remove_notify_handler(device, ACPI_DEVICE_NOTIFY, asus_acpi_notify);
> asus_backlight_exit(asus);
> asus_rfkill_exit(asus);
> asus_led_exit(asus);
> @@ -1932,7 +1938,6 @@ static struct acpi_driver asus_acpi_driver = {
> .ops = {
> .add = asus_acpi_add,
> .remove = asus_acpi_remove,
> - .notify = asus_acpi_notify,
> },
> };
>