]> www.infradead.org Git - linux.git/commitdiff
platform/x86/amd: pmf: Add quirk for TUF Gaming A14
authoraln8 <aln8un@gmail.com>
Thu, 12 Sep 2024 07:36:01 +0000 (15:36 +0800)
committerHans de Goede <hdegoede@redhat.com>
Sat, 14 Sep 2024 16:06:12 +0000 (18:06 +0200)
The ASUS TUF Gaming A14 has the same issue as the ROG Zephyrus G14
where it advertises SPS support but doesn't use it.

Signed-off-by: aln8 <aln8un@gmail.com>
Acked-by: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
Link: https://lore.kernel.org/r/20240912073601.65656-1-aln8un@gmail.com
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
drivers/platform/x86/amd/pmf/pmf-quirks.c

index 460444cda1b295211eb419b1f9ba65d9900ec984..6ee219a81537d449076cad95e4524400ad01271b 100644 (file)
@@ -37,6 +37,14 @@ static const struct dmi_system_id fwbug_list[] = {
                },
                .driver_data = &quirk_no_sps_bug,
        },
+       {
+               .ident = "ASUS TUF Gaming A14",
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "FA401W"),
+               },
+               .driver_data = &quirk_no_sps_bug,
+       },
        {}
 };