diff options
author | Ang Way Chuang <wcang79@gmail.com> | 2012-04-12 13:11:27 +0800 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2012-05-31 14:23:38 -0400 |
commit | 57b31b2fb6cc2593daa5b37c7482f36f533c2a34 (patch) | |
tree | a57c88d22702a573ff486a02362f61f060573c7e /drivers/platform | |
parent | 2d117403b30cd7301af60d7d54b279a9f566d10d (diff) | |
download | op-kernel-dev-57b31b2fb6cc2593daa5b37c7482f36f533c2a34.zip op-kernel-dev-57b31b2fb6cc2593daa5b37c7482f36f533c2a34.tar.gz |
Dell Vostro 3350 touchpad LED
Add Vostro 3350 into quirks so that the touchpad LED works.
Signed-off-by: Ang Way Chuang <wcang79@gmail.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 e6c08ee..ae98195 100644 --- a/drivers/platform/x86/dell-laptop.c +++ b/drivers/platform/x86/dell-laptop.c @@ -187,6 +187,15 @@ static struct dmi_system_id __devinitdata dell_quirks[] = { }, { .callback = dmi_matched, + .ident = "Dell Vostro 3350", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3350"), + }, + .driver_data = &quirk_dell_vostro_v130, + }, + { + .callback = dmi_matched, .ident = "Dell Vostro 3555", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |