diff options
author | Guenter Roeck <linux@roeck-us.net> | 2013-12-14 12:30:17 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-18 19:46:44 -0500 |
commit | ff457bde6063b834d878e2bbe38c2a68a5aede07 (patch) | |
tree | 2845ac2d00798c290c26ba7869d914b6fdf9fef9 /drivers/char | |
parent | f5a7f82730444426adc243ca4fc6acad7ca0ae77 (diff) |
i8k: Add support for Dell Studio laptops
Tested with Dell Studio 1555.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/i8k.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/char/i8k.c b/drivers/char/i8k.c index 0fbf32fd17b8..4b707c108d13 100644 --- a/drivers/char/i8k.c +++ b/drivers/char/i8k.c | |||
@@ -692,6 +692,13 @@ static struct dmi_system_id i8k_dmi_table[] __initdata = { | |||
692 | DMI_MATCH(DMI_PRODUCT_NAME, "XPS L421X"), | 692 | DMI_MATCH(DMI_PRODUCT_NAME, "XPS L421X"), |
693 | }, | 693 | }, |
694 | }, | 694 | }, |
695 | { | ||
696 | .ident = "Dell Studio", | ||
697 | .matches = { | ||
698 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
699 | DMI_MATCH(DMI_PRODUCT_NAME, "Studio"), | ||
700 | }, | ||
701 | }, | ||
695 | { } | 702 | { } |
696 | }; | 703 | }; |
697 | 704 | ||