Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

i8k: Inspiron E1705 fix

Needs the following in order to work correctly on my Inspiron E1705:

Add DMI Product name to i8k for Dell MP061 hardware (Inspiron 9400/E1705)

Signed-off-by: Frank Sorenson <frank@tuxrocks.com>
Cc: Bradley Smith <bradjsmith@btinternet.com>
Cc: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Frank Sorenson and committed by
Linus Torvalds
48103c52 300ec130

+7
+7
drivers/char/i8k.c
··· 473 473 DMI_MATCH(DMI_PRODUCT_NAME, "MM061"), 474 474 }, 475 475 }, 476 + { 477 + .ident = "Dell Inspiron 3", 478 + .matches = { 479 + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), 480 + DMI_MATCH(DMI_PRODUCT_NAME, "MP061"), 481 + }, 482 + }, 476 483 { } 477 484 }; 478 485