diff options
author | Alex Hung <alex.hung@canonical.com> | 2017-02-16 15:58:03 +0300 |
---|---|---|
committer | Darren Hart <dvhart@linux.intel.com> | 2017-02-25 10:48:53 +0300 |
commit | 8d2c4538dbc7154c4aed1364db127a0e51dbd459 (patch) | |
tree | f8839033e06375075d7d357e208fe8a004ab7590 /drivers/platform/x86/dell-laptop.c | |
parent | bd5762a0c1c9ae66bd0ece6959bbc5013ab95dcd (diff) | |
download | linux-8d2c4538dbc7154c4aed1364db127a0e51dbd459.tar.xz |
platform/x86: dell-laptop: Add Latitude 7480 and others to the DMI whitelist
This is to support Latitude 7480 and many other newer Dell laptops.
Signed-off-by: Alex Hung <alex.hung@canonical.com>
Reviewed-by: Pali Rohár <pali.rohar@gmail.com>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Diffstat (limited to 'drivers/platform/x86/dell-laptop.c')
-rw-r--r-- | drivers/platform/x86/dell-laptop.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/platform/x86/dell-laptop.c b/drivers/platform/x86/dell-laptop.c index 14392a01ab36..f57dd282a002 100644 --- a/drivers/platform/x86/dell-laptop.c +++ b/drivers/platform/x86/dell-laptop.c @@ -106,6 +106,12 @@ static const struct dmi_system_id dell_device_table[] __initconst = { }, }, { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_CHASSIS_TYPE, "10"), /*Notebook*/ + }, + }, + { .ident = "Dell Computer Corporation", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"), |