Skip to content

Commit ad3e8da

Browse files
tiwaijoergroedel
authored andcommitted
iommu/amd: Apply the same IVRS IOAPIC workaround to Acer Aspire A315-41
Acer Aspire A315-41 requires the very same workaround as the existing quirk for Dell Latitude 5495. Add the new entry for that. BugLink: https://bugzilla.suse.com/show_bug.cgi?id=1137799 Signed-off-by: Takashi Iwai <[email protected]> Signed-off-by: Joerg Roedel <[email protected]>
1 parent 565d454 commit ad3e8da

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

drivers/iommu/amd_iommu_quirks.c

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,19 @@ static const struct dmi_system_id ivrs_quirks[] __initconst = {
7373
},
7474
.driver_data = (void *)&ivrs_ioapic_quirks[DELL_LATITUDE_5495],
7575
},
76+
{
77+
/*
78+
* Acer Aspire A315-41 requires the very same workaround as
79+
* Dell Latitude 5495
80+
*/
81+
.callback = ivrs_ioapic_quirk_cb,
82+
.ident = "Acer Aspire A315-41",
83+
.matches = {
84+
DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
85+
DMI_MATCH(DMI_PRODUCT_NAME, "Aspire A315-41"),
86+
},
87+
.driver_data = (void *)&ivrs_ioapic_quirks[DELL_LATITUDE_5495],
88+
},
7689
{
7790
.callback = ivrs_ioapic_quirk_cb,
7891
.ident = "Lenovo ideapad 330S-15ARR",

0 commit comments

Comments
 (0)