diff options
author | Guenter Roeck <linux@roeck-us.net> | 2013-12-14 12:30:18 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-18 19:47:04 -0500 |
commit | 919a0304a833a0dc131425c70e603c0ccf32c843 (patch) | |
tree | 377a2eaab0d0a44d56f404dcf3c836b5c322a9fc /drivers/char/i8k.c | |
parent | ff457bde6063b834d878e2bbe38c2a68a5aede07 (diff) |
i8k: Add support for Dell XPS M140
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/i8k.c')
-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 4b707c108d13..18571b5d5c46 100644 --- a/drivers/char/i8k.c +++ b/drivers/char/i8k.c | |||
@@ -699,6 +699,13 @@ static struct dmi_system_id i8k_dmi_table[] __initdata = { | |||
699 | DMI_MATCH(DMI_PRODUCT_NAME, "Studio"), | 699 | DMI_MATCH(DMI_PRODUCT_NAME, "Studio"), |
700 | }, | 700 | }, |
701 | }, | 701 | }, |
702 | { | ||
703 | .ident = "Dell XPS M140", | ||
704 | .matches = { | ||
705 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
706 | DMI_MATCH(DMI_PRODUCT_NAME, "MXC051"), | ||
707 | }, | ||
708 | }, | ||
702 | { } | 709 | { } |
703 | }; | 710 | }; |
704 | 711 | ||