diff options
| author | Alex Hung <alex.hung@canonical.com> | 2017-03-16 20:48:32 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-03-22 07:43:38 -0400 |
| commit | 5c19e9070df8165db7ba26c13f39848d94e2ce8a (patch) | |
| tree | 4f561222f4e691c84ea0956e1f25975346422aa7 | |
| parent | bc01eb939899762eede303ffbbbfcda197316234 (diff) | |
ACPI / blacklist: add _REV quirks for Dell Precision 5520 and 3520
[ 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>
| -rw-r--r-- | drivers/acpi/blacklist.c | 16 |
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 | }; |
