Skip to content

Commit 48436f2

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI: video: Add backlight=native DMI quirk for Apple iMac11,3
Linux defaults to picking the non-working ACPI video backlight interface on the Apple iMac11,3 . Add a DMI quirk to pick the working native radeon_bl0 interface instead. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent f1fcbaa commit 48436f2

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

drivers/acpi/video_detect.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,14 @@ static const struct dmi_system_id video_detect_dmi_table[] = {
470470
DMI_MATCH(DMI_PRODUCT_NAME, "82BK"),
471471
},
472472
},
473+
{
474+
.callback = video_detect_force_native,
475+
/* Apple iMac11,3 */
476+
.matches = {
477+
DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
478+
DMI_MATCH(DMI_PRODUCT_NAME, "iMac11,3"),
479+
},
480+
},
473481
{
474482
/* https://bugzilla.redhat.com/show_bug.cgi?id=1217249 */
475483
.callback = video_detect_force_native,

0 commit comments

Comments
 (0)