Skip to content

Commit

Permalink
i8k: Add Dell Vostro systems
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Federico Heinz authored and Linus Torvalds committed Jan 2, 2009
1 parent 7ab21a8 commit bef2a50
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion drivers/char/i8k.c
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,14 @@ static struct dmi_system_id __initdata i8k_dmi_table[] = {
DMI_MATCH(DMI_PRODUCT_NAME, "Precision"),
},
},
{ }
{
.ident = "Dell Vostro",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
DMI_MATCH(DMI_PRODUCT_NAME, "Vostro"),
},
},
{ }
};

/*
Expand Down

0 comments on commit bef2a50

Please sign in to comment.