diff options
author | Carlos Corbacho <carlos@strangeworlds.co.uk> | 2008-03-12 20:13:00 +0000 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-03-12 16:25:02 -0400 |
commit | ed9cfe98050be635ff780678d166e7c7bf578818 (patch) | |
tree | 4bd73fcc976520364e939e873da2d317f4ebbdb9 /drivers/misc | |
parent | 08816465894f46fc559301c22686939c3c9c138b (diff) | |
download | op-kernel-dev-ed9cfe98050be635ff780678d166e7c7bf578818.zip op-kernel-dev-ed9cfe98050be635ff780678d166e7c7bf578818.tar.gz |
acer-wmi: Add DMI quirk for mail LED support on Acer Aspire 3610/ 5610
Signed-off-by: Carlos Corbacho <carlos@strangeworlds.co.uk>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/misc')
-rw-r--r-- | drivers/misc/acer-wmi.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/misc/acer-wmi.c b/drivers/misc/acer-wmi.c index 9af733b..05fd9cc 100644 --- a/drivers/misc/acer-wmi.c +++ b/drivers/misc/acer-wmi.c @@ -219,6 +219,15 @@ static struct dmi_system_id acer_quirks[] = { }, { .callback = dmi_matched, + .ident = "Acer Aspire 3610", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Acer"), + DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 3610"), + }, + .driver_data = &quirk_acer_travelmate_2490, + }, + { + .callback = dmi_matched, .ident = "Acer Aspire 5100", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Acer"), @@ -228,6 +237,15 @@ static struct dmi_system_id acer_quirks[] = { }, { .callback = dmi_matched, + .ident = "Acer Aspire 5610", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Acer"), + DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5610"), + }, + .driver_data = &quirk_acer_travelmate_2490, + }, + { + .callback = dmi_matched, .ident = "Acer Aspire 5630", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |