diff options
author | Pali Rohár <pali.rohar@gmail.com> | 2014-10-10 05:12:47 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-07 12:58:28 -0500 |
commit | 0f352239de1628d38ff35adb91842a732f4453cd (patch) | |
tree | 64da09c225992869379b7d2d445b869678f7dfa5 /drivers/char/i8k.c | |
parent | 24fe1f03e4ef838adb21205d004ec2c3396a3ad9 (diff) |
i8k: Add support for Dell Latitude E6440
Dell Latitude E6440 needs same settings as E6540.
Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
Acked-by: Guenter Roeck <linux@roeck-us.net>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/char/i8k.c')
-rw-r--r-- | drivers/char/i8k.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/char/i8k.c b/drivers/char/i8k.c index 34174d01462e..471f985e38d2 100644 --- a/drivers/char/i8k.c +++ b/drivers/char/i8k.c | |||
@@ -711,6 +711,14 @@ static struct dmi_system_id i8k_dmi_table[] __initdata = { | |||
711 | .driver_data = (void *)&i8k_config_data[DELL_LATITUDE_D520], | 711 | .driver_data = (void *)&i8k_config_data[DELL_LATITUDE_D520], |
712 | }, | 712 | }, |
713 | { | 713 | { |
714 | .ident = "Dell Latitude E6440", | ||
715 | .matches = { | ||
716 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
717 | DMI_MATCH(DMI_PRODUCT_NAME, "Latitude E6440"), | ||
718 | }, | ||
719 | .driver_data = (void *)&i8k_config_data[DELL_LATITUDE_E6540], | ||
720 | }, | ||
721 | { | ||
714 | .ident = "Dell Latitude E6540", | 722 | .ident = "Dell Latitude E6540", |
715 | .matches = { | 723 | .matches = { |
716 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | 724 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |