diff options
author | AceLan Kao <acelan.kao@canonical.com> | 2012-05-22 00:38:51 -0400 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2012-05-31 14:37:19 -0400 |
commit | d0e0a4777941b93036e5e325b0db6056e1c3092d (patch) | |
tree | 34ea8992e5e970814b72ac505cb412db26abe815 /drivers/platform | |
parent | 050eff39af6a395104df85b7ca59f0a4245e04f8 (diff) |
dell-laptop: Add touchpad led support for Dell V3450
Add Dell Vostro 3450 quirk to support touchpad LED.
CC: Mariusz Fik <fisiu@opensuse.org>
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 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/platform/x86/dell-laptop.c b/drivers/platform/x86/dell-laptop.c index 255040bc89c0..c188d43b93c5 100644 --- a/drivers/platform/x86/dell-laptop.c +++ b/drivers/platform/x86/dell-laptop.c | |||
@@ -248,6 +248,15 @@ static struct dmi_system_id __devinitdata dell_quirks[] = { | |||
248 | }, | 248 | }, |
249 | .driver_data = &quirk_dell_vostro_v130, | 249 | .driver_data = &quirk_dell_vostro_v130, |
250 | }, | 250 | }, |
251 | { | ||
252 | .callback = dmi_matched, | ||
253 | .ident = "Dell Vostro 3450", | ||
254 | .matches = { | ||
255 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
256 | DMI_MATCH(DMI_PRODUCT_NAME, "Dell System Vostro 3450"), | ||
257 | }, | ||
258 | .driver_data = &quirk_dell_vostro_v130, | ||
259 | }, | ||
251 | { } | 260 | { } |
252 | }; | 261 | }; |
253 | 262 | ||