Skip to content

Commit

Permalink
Merge branch 'i8k-updates' from Alan
Browse files Browse the repository at this point in the history
* i8k-updates:
  i8k: Add Dell Vostro systems
  i8k: Enable i8k on Dell Precision Systems
  • Loading branch information
Linus Torvalds committed Jan 2, 2009
2 parents e8e3232 + bef2a50 commit f0f0ce9
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion drivers/char/i8k.c
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,21 @@ static struct dmi_system_id __initdata i8k_dmi_table[] = {
DMI_MATCH(DMI_PRODUCT_NAME, "MP061"),
},
},
{ }
{
.ident = "Dell Precision",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
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 f0f0ce9

Please sign in to comment.