Skip to content

Commit 151e78a

Browse files
Wer-Wolfjwrdegoede
authored andcommitted
platform/x86: wireless-hotkey: Add support for LG Airplane Button
The LGEX0815 ACPI device is used by the "LG Airplane Mode Button" Windows driver for handling rfkill requests. When the ACPI device receives an 0x80 ACPI notification, an rfkill event is to be send to userspace. Add support for the LGEX0815 ACPI device to the driver. Tested-by: Agathe Boutmy <agathe@boutmy.com> Signed-off-by: Armin Wolf <W_Armin@gmx.de> Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Link: https://lore.kernel.org/r/20240606233540.9774-2-W_Armin@gmx.de Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
1 parent d56fbfb commit 151e78a

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

drivers/platform/x86/wireless-hotkey.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ MODULE_AUTHOR("Alex Hung");
1919
MODULE_ALIAS("acpi*:HPQ6001:*");
2020
MODULE_ALIAS("acpi*:WSTADEF:*");
2121
MODULE_ALIAS("acpi*:AMDI0051:*");
22+
MODULE_ALIAS("acpi*:LGEX0815:*");
2223

2324
struct wl_button {
2425
struct input_dev *input_dev;
@@ -29,6 +30,7 @@ static const struct acpi_device_id wl_ids[] = {
2930
{"HPQ6001", 0},
3031
{"WSTADEF", 0},
3132
{"AMDI0051", 0},
33+
{"LGEX0815", 0},
3234
{"", 0},
3335
};
3436

0 commit comments

Comments
 (0)