Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bef2a508 authored by Federico Heinz's avatar Federico Heinz Committed by Linus Torvalds
Browse files

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: default avatarFederico Heinz <fheinz@vialibre.org.ar>
Signed-off-by: default avatarAlan Cox <alan@redhat.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 7ab21a86
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -492,6 +492,13 @@ 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"),
		},
	},
        { }
};