]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
dell-laptop: add 3 quirks for supporting touchpad LED
authorAceLan Kao <acelan.kao@canonical.com>
Fri, 20 Apr 2012 03:47:26 +0000 (11:47 +0800)
committerMatthew Garrett <mjg@redhat.com>
Thu, 31 May 2012 18:23:38 +0000 (14:23 -0400)
Add "Vostro 3360", "Vostro 3460", and "Vostro 3560" into quirks,
so that they could have touchpad LED function work.

Signed-off-by: AceLan Kao <acelan.kao@canonical.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
drivers/platform/x86/dell-laptop.c

index ae98195ee3cc7bf3bc9b5ef778099aafc04255d3..a269e1abe50d24097deb494d0a4d1ab13e226086 100644 (file)
@@ -221,6 +221,33 @@ static struct dmi_system_id __devinitdata dell_quirks[] = {
                },
                .driver_data = &quirk_dell_vostro_v130,
        },
+       {
+               .callback = dmi_matched,
+               .ident = "Dell Vostro 3360",
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3360"),
+               },
+               .driver_data = &quirk_dell_vostro_v130,
+       },
+       {
+               .callback = dmi_matched,
+               .ident = "Dell Vostro 3460",
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3460"),
+               },
+               .driver_data = &quirk_dell_vostro_v130,
+       },
+       {
+               .callback = dmi_matched,
+               .ident = "Dell Vostro 3560",
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3560"),
+               },
+               .driver_data = &quirk_dell_vostro_v130,
+       },
        { }
 };