Skip to content

Commit d3607fc

Browse files
sumitsemwalgregkh
authored andcommitted
ACPI / blacklist: add _REV quirks for Dell Precision 5520 and 3520
From: Alex Hung <alex.hung@canonical.com> [ Upstream commit 9523b9bf6dceef6b0215e90b2348cd646597f796 ] Precision 5520 and 3520 either hang at login and during suspend or reboot. It turns out that that adding them to acpi_rev_dmi_table[] helps to work around those issues. Signed-off-by: Alex Hung <alex.hung@canonical.com> [ rjw: Changelog ] Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Sumit Semwal <sumit.semwal@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 4e2c66b commit d3607fc

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

drivers/acpi/blacklist.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,22 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = {
346346
DMI_MATCH(DMI_PRODUCT_NAME, "XPS 13 9343"),
347347
},
348348
},
349+
{
350+
.callback = dmi_enable_rev_override,
351+
.ident = "DELL Precision 5520",
352+
.matches = {
353+
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
354+
DMI_MATCH(DMI_PRODUCT_NAME, "Precision 5520"),
355+
},
356+
},
357+
{
358+
.callback = dmi_enable_rev_override,
359+
.ident = "DELL Precision 3520",
360+
.matches = {
361+
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
362+
DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3520"),
363+
},
364+
},
349365
#endif
350366
{}
351367
};

0 commit comments

Comments
 (0)