aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorentin Chary <corentin.chary@gmail.com>2012-06-13 03:32:05 -0400
committerMatthew Garrett <mjg@redhat.com>2012-07-28 00:11:48 -0400
commite052067df00592b1b62d1d438191b931f2009cbb (patch)
treef3fb999a7f4c3c6f499bf646fe93ec6f79858a66
parent084940d5b101e9ca91a689eb5048151b14076839 (diff)
samsung-laptop: support R40/R41
> Chassis Information > Manufacturer: SAMSUNG ELECTRONICS CO., LTD. > Type: Other Type should be "Notebook", "Laptop", .. not "Other". Signed-off-by: Corentin Chary <corentin.chary@gmail.com> Signed-off-by: Matthew Garrett <mjg@redhat.com>
-rw-r--r--drivers/platform/x86/samsung-laptop.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/platform/x86/samsung-laptop.c b/drivers/platform/x86/samsung-laptop.c
index 98f07588ac86..c1ca7bcebb66 100644
--- a/drivers/platform/x86/samsung-laptop.c
+++ b/drivers/platform/x86/samsung-laptop.c
@@ -1465,6 +1465,15 @@ static struct dmi_system_id __initdata samsung_dmi_table[] = {
1465 DMI_MATCH(DMI_CHASSIS_TYPE, "14"), /* Sub-Notebook */ 1465 DMI_MATCH(DMI_CHASSIS_TYPE, "14"), /* Sub-Notebook */
1466 }, 1466 },
1467 }, 1467 },
1468 /* DMI ids for laptops with bad Chassis Type */
1469 {
1470 .ident = "R40/R41",
1471 .matches = {
1472 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
1473 DMI_MATCH(DMI_PRODUCT_NAME, "R40/R41"),
1474 DMI_MATCH(DMI_BOARD_NAME, "R40/R41"),
1475 },
1476 },
1468 /* Specific DMI ids for laptop with quirks */ 1477 /* Specific DMI ids for laptop with quirks */
1469 { 1478 {
1470 .callback = samsung_dmi_matched, 1479 .callback = samsung_dmi_matched,