diff options
author | aln8 <aln8un@gmail.com> | 2024-09-12 10:36:01 +0300 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2024-09-14 19:06:12 +0300 |
commit | 06369503d644068abd9e90918c6611274d94c126 (patch) | |
tree | 0f6de2034d315c6d05ffd32d6f6eee32086320c2 | |
parent | c11619af35bae5884029bd14170c3e4b55ddf6f3 (diff) | |
download | linux-06369503d644068abd9e90918c6611274d94c126.tar.xz |
platform/x86/amd: pmf: Add quirk for TUF Gaming A14
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>
-rw-r--r-- | drivers/platform/x86/amd/pmf/pmf-quirks.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/platform/x86/amd/pmf/pmf-quirks.c b/drivers/platform/x86/amd/pmf/pmf-quirks.c index 460444cda1b2..6ee219a81537 100644 --- a/drivers/platform/x86/amd/pmf/pmf-quirks.c +++ b/drivers/platform/x86/amd/pmf/pmf-quirks.c @@ -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, + }, {} }; |