diff mbox series

ACPI: resource: Add Asus ExpertBook B2502 to Asus quirks

Message ID 20221215094443.7466-1-hdegoede@redhat.com
State Accepted
Commit 7203481fd12b1257938519efb2460ea02b9236ee
Headers show
Series ACPI: resource: Add Asus ExpertBook B2502 to Asus quirks | expand

Commit Message

Hans de Goede Dec. 15, 2022, 9:44 a.m. UTC
The Asus ExpertBook B2502 has the same keyboard issue as Asus Vivobook
K3402ZA/K3502ZA. The kernel overrides IRQ 1 to Edge_High when it
should be Active_Low.

This patch adds the ExpertBook B2502 model to the existing
quirk list of Asus laptops with this issue.

Fixes: b5f9223a105d ("ACPI: resource: Skip IRQ override on Asus Vivobook S5602ZA")
Link: https://bugzilla.redhat.com/show_bug.cgi?id=2142574
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
 drivers/acpi/resource.c | 7 +++++++
 1 file changed, 7 insertions(+)

Comments

Rafael J. Wysocki Dec. 22, 2022, 4:45 p.m. UTC | #1
On Thu, Dec 15, 2022 at 10:45 AM Hans de Goede <hdegoede@redhat.com> wrote:
>
> The Asus ExpertBook B2502 has the same keyboard issue as Asus Vivobook
> K3402ZA/K3502ZA. The kernel overrides IRQ 1 to Edge_High when it
> should be Active_Low.
>
> This patch adds the ExpertBook B2502 model to the existing
> quirk list of Asus laptops with this issue.
>
> Fixes: b5f9223a105d ("ACPI: resource: Skip IRQ override on Asus Vivobook S5602ZA")
> Link: https://bugzilla.redhat.com/show_bug.cgi?id=2142574
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
> ---
>  drivers/acpi/resource.c | 7 +++++++
>  1 file changed, 7 insertions(+)
>
> diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c
> index f27914aedbd5..e721f2ec014f 100644
> --- a/drivers/acpi/resource.c
> +++ b/drivers/acpi/resource.c
> @@ -432,6 +432,13 @@ static const struct dmi_system_id asus_laptop[] = {
>                         DMI_MATCH(DMI_BOARD_NAME, "S5602ZA"),
>                 },
>         },
> +       {
> +               .ident = "Asus ExpertBook B2502",
> +               .matches = {
> +                       DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
> +                       DMI_MATCH(DMI_BOARD_NAME, "B2502CBA"),
> +               },
> +       },
>         { }
>  };
>
> --

Applied as 6.2-rc material, thanks!
diff mbox series

Patch

diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c
index f27914aedbd5..e721f2ec014f 100644
--- a/drivers/acpi/resource.c
+++ b/drivers/acpi/resource.c
@@ -432,6 +432,13 @@  static const struct dmi_system_id asus_laptop[] = {
 			DMI_MATCH(DMI_BOARD_NAME, "S5602ZA"),
 		},
 	},
+	{
+		.ident = "Asus ExpertBook B2502",
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+			DMI_MATCH(DMI_BOARD_NAME, "B2502CBA"),
+		},
+	},
 	{ }
 };