diff options
author | Alan Cox <[email protected]> | 2013-12-03 13:56:56 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2013-12-04 20:22:40 -0800 |
commit | 9aa5b0181bdf335f0b731d8502e128a862884bcd (patch) | |
tree | d730a3399edf364c4534852dd3edf0490a035916 | |
parent | d0b00d3fb96d155649f80bf43b81a50ecdd2047f (diff) |
drivers/char/i8k.c: add Dell XPLS L421X
Addresses https://bugzilla.kernel.org/show_bug.cgi?id=60772
Signed-off-by: Alan Cox <[email protected]>
Reported-by: Leho Kraav <[email protected]>
Cc: stable <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-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 40cc0cf2ded6..e6939e13e338 100644 --- a/drivers/char/i8k.c +++ b/drivers/char/i8k.c @@ -664,6 +664,13 @@ static struct dmi_system_id __initdata i8k_dmi_table[] = { DMI_MATCH(DMI_PRODUCT_NAME, "Vostro"), }, }, + { + .ident = "Dell XPS421", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "XPS L421X"), + }, + }, { } }; |