diff options
author | Pali Rohár <pali.rohar@gmail.com> | 2017-03-03 17:41:52 -0500 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2017-04-02 10:01:53 -0400 |
commit | a4811b6cb4069eb2f17ffebcd29f2e5b0f76ee31 (patch) | |
tree | 3dc1f976a67d39042608232304acf2602d9a8070 | |
parent | 5ba6bcbc335771c37d05b88cbfcad5441b57130b (diff) |
hwmon: (dell-smm) Add Dell XPS 15 9560 into DMI list
It was reported that dell-smm-hwmon is working fine on Dell XPS 15 9560.
Link: http://www.spinics.net/lists/platform-driver-x86/msg10751.html
Reported-by: Vasile Dumitrescu <vasile.dumitrescu@undeva.eu>
Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
-rw-r--r-- | drivers/hwmon/dell-smm-hwmon.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/hwmon/dell-smm-hwmon.c b/drivers/hwmon/dell-smm-hwmon.c index 34704b0451b4..3189246302a6 100644 --- a/drivers/hwmon/dell-smm-hwmon.c +++ b/drivers/hwmon/dell-smm-hwmon.c | |||
@@ -995,6 +995,13 @@ static struct dmi_system_id i8k_dmi_table[] __initdata = { | |||
995 | }, | 995 | }, |
996 | .driver_data = (void *)&i8k_config_data[DELL_XPS], | 996 | .driver_data = (void *)&i8k_config_data[DELL_XPS], |
997 | }, | 997 | }, |
998 | { | ||
999 | .ident = "Dell XPS 15 9560", | ||
1000 | .matches = { | ||
1001 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
1002 | DMI_MATCH(DMI_PRODUCT_NAME, "XPS 15 9560"), | ||
1003 | }, | ||
1004 | }, | ||
998 | { } | 1005 | { } |
999 | }; | 1006 | }; |
1000 | 1007 | ||