diff options
author | AceLan Kao <acelan.kao@canonical.com> | 2012-04-19 23:47:26 -0400 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2012-05-31 14:23:38 -0400 |
commit | 7f8392280c33db6f568f8d4d08aac56cdb21c4a4 (patch) | |
tree | 1d3c4e6e4afa7b69af9468867b404e540d8a8e01 /drivers/platform | |
parent | 57b31b2fb6cc2593daa5b37c7482f36f533c2a34 (diff) |
dell-laptop: add 3 quirks for supporting touchpad LED
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>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/dell-laptop.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/drivers/platform/x86/dell-laptop.c b/drivers/platform/x86/dell-laptop.c index ae98195ee3cc..a269e1abe50d 100644 --- a/drivers/platform/x86/dell-laptop.c +++ b/drivers/platform/x86/dell-laptop.c | |||
@@ -221,6 +221,33 @@ static struct dmi_system_id __devinitdata dell_quirks[] = { | |||
221 | }, | 221 | }, |
222 | .driver_data = &quirk_dell_vostro_v130, | 222 | .driver_data = &quirk_dell_vostro_v130, |
223 | }, | 223 | }, |
224 | { | ||
225 | .callback = dmi_matched, | ||
226 | .ident = "Dell Vostro 3360", | ||
227 | .matches = { | ||
228 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
229 | DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3360"), | ||
230 | }, | ||
231 | .driver_data = &quirk_dell_vostro_v130, | ||
232 | }, | ||
233 | { | ||
234 | .callback = dmi_matched, | ||
235 | .ident = "Dell Vostro 3460", | ||
236 | .matches = { | ||
237 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
238 | DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3460"), | ||
239 | }, | ||
240 | .driver_data = &quirk_dell_vostro_v130, | ||
241 | }, | ||
242 | { | ||
243 | .callback = dmi_matched, | ||
244 | .ident = "Dell Vostro 3560", | ||
245 | .matches = { | ||
246 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
247 | DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3560"), | ||
248 | }, | ||
249 | .driver_data = &quirk_dell_vostro_v130, | ||
250 | }, | ||
224 | { } | 251 | { } |
225 | }; | 252 | }; |
226 | 253 | ||