2014-09-17 13:48:32 +00:00
|
|
|
From b43cad54372bd42adfb63740d4a0bfb113d21f61 Mon Sep 17 00:00:00 2001
|
2014-06-03 13:45:55 +00:00
|
|
|
From: Hans de Goede <hdegoede@redhat.com>
|
|
|
|
Date: Mon, 2 Jun 2014 17:40:59 +0200
|
2014-08-20 17:22:24 +00:00
|
|
|
Subject: [PATCH] samsung-laptop: Add broken-acpi-video quirk for NC210/NC110
|
2014-06-03 13:45:55 +00:00
|
|
|
|
|
|
|
Reported (and tested) here:
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=861573
|
|
|
|
|
2014-08-20 17:22:24 +00:00
|
|
|
Bugzilla: 861573
|
|
|
|
Upstream-status: Waiting for feedback from reporter
|
|
|
|
|
2014-06-03 13:45:55 +00:00
|
|
|
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
|
|
|
---
|
|
|
|
drivers/platform/x86/samsung-laptop.c | 10 ++++++++++
|
|
|
|
1 file changed, 10 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/drivers/platform/x86/samsung-laptop.c b/drivers/platform/x86/samsung-laptop.c
|
2014-06-13 12:58:29 +00:00
|
|
|
index 5a5966512277..0d7954e0fc74 100644
|
2014-06-03 13:45:55 +00:00
|
|
|
--- a/drivers/platform/x86/samsung-laptop.c
|
|
|
|
+++ b/drivers/platform/x86/samsung-laptop.c
|
2014-06-13 12:58:29 +00:00
|
|
|
@@ -1568,6 +1568,16 @@ static struct dmi_system_id __initdata samsung_dmi_table[] = {
|
2014-06-03 13:45:55 +00:00
|
|
|
},
|
2014-06-13 12:58:29 +00:00
|
|
|
.driver_data = &samsung_np740u3e,
|
2014-06-03 13:45:55 +00:00
|
|
|
},
|
|
|
|
+ {
|
|
|
|
+ .callback = samsung_dmi_matched,
|
|
|
|
+ .ident = "NC210",
|
|
|
|
+ .matches = {
|
|
|
|
+ DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
|
|
|
|
+ DMI_MATCH(DMI_PRODUCT_NAME, "NC210/NC110"),
|
|
|
|
+ DMI_MATCH(DMI_BOARD_NAME, "NC210/NC110"),
|
|
|
|
+ },
|
|
|
|
+ .driver_data = &samsung_broken_acpi_video,
|
|
|
|
+ },
|
|
|
|
{ },
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(dmi, samsung_dmi_table);
|
2014-08-20 17:22:24 +00:00
|
|
|
--
|
|
|
|
1.9.3
|
|
|
|
|