aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Hung <alex.hung@canonical.com>2016-10-28 14:54:04 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2016-11-16 16:57:39 -0500
commit9523b9bf6dceef6b0215e90b2348cd646597f796 (patch)
tree4ef936cf1498902bc325c65778ab649af9ca4006
parenta25f0944ba9b1d8a6813fd6f1a86f1bd59ac25a6 (diff)
ACPI / blacklist: add _REV quirks for Dell Precision 5520 and 3520
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>
-rw-r--r--drivers/acpi/blacklist.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/acpi/blacklist.c b/drivers/acpi/blacklist.c
index bdc67bad61a7..4f87fd748303 100644
--- a/drivers/acpi/blacklist.c
+++ b/drivers/acpi/blacklist.c
@@ -160,6 +160,22 @@ static struct dmi_system_id acpi_rev_dmi_table[] __initdata = {
160 DMI_MATCH(DMI_PRODUCT_NAME, "XPS 13 9343"), 160 DMI_MATCH(DMI_PRODUCT_NAME, "XPS 13 9343"),
161 }, 161 },
162 }, 162 },
163 {
164 .callback = dmi_enable_rev_override,
165 .ident = "DELL Precision 5520",
166 .matches = {
167 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
168 DMI_MATCH(DMI_PRODUCT_NAME, "Precision 5520"),
169 },
170 },
171 {
172 .callback = dmi_enable_rev_override,
173 .ident = "DELL Precision 3520",
174 .matches = {
175 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
176 DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3520"),
177 },
178 },
163#endif 179#endif
164 {} 180 {}
165}; 181};