]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ACPI / blacklist: Make Dell Latitude 3350 ethernet work
authorMichael Pobega <mpobega@neverware.com>
Sat, 12 Nov 2016 03:29:14 +0000 (22:29 -0500)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 16 Nov 2016 22:01:29 +0000 (23:01 +0100)
The Dell Latitude 3350's ethernet card attempts to use a reserved
IRQ (18), resulting in ACPI being unable to enable the ethernet.

Adding it to acpi_rev_dmi_table[] helps to work around this problem.

Signed-off-by: Michael Pobega <mpobega@neverware.com>
[ rjw: Changelog ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/blacklist.c

index 4f87fd7483030178e3bf027e35139d919fb64146..4421f7c9981c7c5aa950893273a9d93dfc353bb4 100644 (file)
@@ -176,6 +176,18 @@ static struct dmi_system_id acpi_rev_dmi_table[] __initdata = {
                      DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3520"),
                },
        },
+       /*
+        * Resolves a quirk with the Dell Latitude 3350 that
+        * causes the ethernet adapter to not function.
+        */
+       {
+        .callback = dmi_enable_rev_override,
+        .ident = "DELL Latitude 3350",
+        .matches = {
+                     DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+                     DMI_MATCH(DMI_PRODUCT_NAME, "Latitude 3350"),
+               },
+       },
 #endif
        {}
 };