aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/i8k.c
diff options
context:
space:
mode:
authorFederico Heinz <fheinz@vialibre.org.ar>2009-01-02 11:19:23 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2009-01-02 13:28:32 -0500
commitbef2a508b4276fd7897b2cb27df037d26361842c (patch)
tree5348f00f68b3c9cc2f2c74242975a6c9d3218d0d /drivers/char/i8k.c
parent7ab21a8692094872298df172f54d55cba72fd308 (diff)
i8k: Add Dell Vostro systems
This trivial patch adds support for i8k on the new Dell Vostro models. I tested it on my Vostro 1400, and it works. It does print a warning when loading the module: i8k: unable to get SMM BIOS version But I couldn't figure out how to fix that. The module seems to work fine, anyway... Signed-off-by: Federico Heinz <fheinz@vialibre.org.ar> Signed-off-by: Alan Cox <alan@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/i8k.c')
-rw-r--r--drivers/char/i8k.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/drivers/char/i8k.c b/drivers/char/i8k.c
index 099fc89a5bd..fc8cf7ac7f2 100644
--- a/drivers/char/i8k.c
+++ b/drivers/char/i8k.c
@@ -492,7 +492,14 @@ static struct dmi_system_id __initdata i8k_dmi_table[] = {
492 DMI_MATCH(DMI_PRODUCT_NAME, "Precision"), 492 DMI_MATCH(DMI_PRODUCT_NAME, "Precision"),
493 }, 493 },
494 }, 494 },
495 { } 495 {
496 .ident = "Dell Vostro",
497 .matches = {
498 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
499 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro"),
500 },
501 },
502 { }
496}; 503};
497 504
498/* 505/*