summaryrefslogtreecommitdiffstats
path: root/acpi_video-Add-enable_native_backlight-quirk-for-Mac.patch
diff options
context:
space:
mode:
Diffstat (limited to 'acpi_video-Add-enable_native_backlight-quirk-for-Mac.patch')
-rw-r--r--acpi_video-Add-enable_native_backlight-quirk-for-Mac.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/acpi_video-Add-enable_native_backlight-quirk-for-Mac.patch b/acpi_video-Add-enable_native_backlight-quirk-for-Mac.patch
deleted file mode 100644
index 3011c1179..000000000
--- a/acpi_video-Add-enable_native_backlight-quirk-for-Mac.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From: Hans de Goede <hdegoede@redhat.com>
-Date: Thu, 28 May 2015 18:25:46 +0200
-Subject: [PATCH] acpi_video: Add enable_native_backlight quirk for
- MacbookPro12,1
-
-It seems that the latest generation of MacbookPro needs to use the
-native backlight driver, just like most modern laptops do, but it does
-not automatically get enabled as the Apple BIOS does not advertise
-Windows 8 compatibility. So add a quirk for this.
-
-Cc: Christopher Beland <beland@alum.mit.edu>
-Reported-by: Christopher Beland <beland@alum.mit.edu>
-Signed-off-by: Hans de Goede <hdegoede@redhat.com>
----
- drivers/acpi/video.c | 9 +++++++++
- 1 file changed, 9 insertions(+)
-
-diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c
-index d9bf8ba7d848..b57d69370bac 100644
---- a/drivers/acpi/video.c
-+++ b/drivers/acpi/video.c
-@@ -583,6 +583,15 @@ static struct dmi_system_id video_dmi_table[] __initdata = {
- DMI_MATCH(DMI_PRODUCT_NAME, "102434U"),
- },
- },
-+ {
-+ /* https://bugzilla.redhat.com/show_bug.cgi?id=1217249 */
-+ .callback = video_enable_native_backlight,
-+ .ident = "Apple MacBook Pro 12,1",
-+ .matches = {
-+ DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
-+ DMI_MATCH(DMI_PRODUCT_NAME, "MacBookPro12,1"),
-+ },
-+ },
- {}
- };
-