aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/acpi/blacklist.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/acpi/blacklist.c b/drivers/acpi/blacklist.c
index 4f87fd748303..4421f7c9981c 100644
--- a/drivers/acpi/blacklist.c
+++ b/drivers/acpi/blacklist.c
@@ -176,6 +176,18 @@ static struct dmi_system_id acpi_rev_dmi_table[] __initdata = {
176 DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3520"), 176 DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3520"),
177 }, 177 },
178 }, 178 },
179 /*
180 * Resolves a quirk with the Dell Latitude 3350 that
181 * causes the ethernet adapter to not function.
182 */
183 {
184 .callback = dmi_enable_rev_override,
185 .ident = "DELL Latitude 3350",
186 .matches = {
187 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
188 DMI_MATCH(DMI_PRODUCT_NAME, "Latitude 3350"),
189 },
190 },
179#endif 191#endif
180 {} 192 {}
181}; 193};