Update to 2.6.32.41 Mainline
/drivers/platform/x86/dell-laptop.c
blob:74909c4aaeea8777bd8edd668dc10602705ff186 -> blob:07a74dac03006f587987bc08301ed3cc6e82dffd
--- drivers/platform/x86/dell-laptop.c
+++ drivers/platform/x86/dell-laptop.c
@@ -71,6 +71,19 @@ static const struct dmi_system_id __init
DMI_MATCH(DMI_CHASSIS_TYPE, "8"),
},
},
+ {
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
+ DMI_MATCH(DMI_CHASSIS_TYPE, "9"), /*Laptop*/
+ },
+ },
+ {
+ .ident = "Dell Computer Corporation",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "Dell Computer Corporation"),
+ DMI_MATCH(DMI_CHASSIS_TYPE, "8"),
+ },
+ },
{ }
};
@@ -397,3 +410,5 @@ MODULE_AUTHOR("Matthew Garrett <mjg@redh
MODULE_DESCRIPTION("Dell laptop driver");
MODULE_LICENSE("GPL");
MODULE_ALIAS("dmi:*svnDellInc.:*:ct8:*");
+MODULE_ALIAS("dmi:*svnDellInc.:*:ct9:*");
+MODULE_ALIAS("dmi:*svnDellComputerCorporation.:*:ct8:*");