aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/acpi/blacklist.c')
-rw-r--r--drivers/acpi/blacklist.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/drivers/acpi/blacklist.c b/drivers/acpi/blacklist.c
index 96809cd99ace..2f24b578bcaf 100644
--- a/drivers/acpi/blacklist.c
+++ b/drivers/acpi/blacklist.c
@@ -346,6 +346,34 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = {
346 DMI_MATCH(DMI_PRODUCT_NAME, "XPS 13 9343"), 346 DMI_MATCH(DMI_PRODUCT_NAME, "XPS 13 9343"),
347 }, 347 },
348 }, 348 },
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 },
365 /*
366 * Resolves a quirk with the Dell Latitude 3350 that
367 * causes the ethernet adapter to not function.
368 */
369 {
370 .callback = dmi_enable_rev_override,
371 .ident = "DELL Latitude 3350",
372 .matches = {
373 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
374 DMI_MATCH(DMI_PRODUCT_NAME, "Latitude 3350"),
375 },
376 },
349#endif 377#endif
350 {} 378 {}
351}; 379};