diff options
author | Maya Matuszczyk <maccraft123mc@gmail.com> | 2023-05-15 20:48:43 +0200 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2023-05-17 11:46:49 +0200 |
commit | 1aa7f416175619e0286fddc5fc44e968b06bf2aa (patch) | |
tree | bfea1cf179299d70dbac465755ed704a0ed07476 /drivers/gpu/drm/drm_panel_orientation_quirks.c | |
parent | 2d2f5f1e8fd91fe848aacde28f738fb8e8d95a27 (diff) | |
download | lwn-1aa7f416175619e0286fddc5fc44e968b06bf2aa.tar.gz lwn-1aa7f416175619e0286fddc5fc44e968b06bf2aa.zip |
drm: panel-orientation-quirks: Change Air's quirk to support Air Plus
It turned out that Aya Neo Air Plus had a different board name than
expected.
This patch changes Aya Neo Air's quirk to account for that, as both
devices share "Air" in DMI product name.
Tested on Air claiming to be an Air Pro, and on Air Plus.
Signed-off-by: Maya Matuszczyk <maccraft123mc@gmail.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230515184843.1552612-1-maccraft123mc@gmail.com
Diffstat (limited to 'drivers/gpu/drm/drm_panel_orientation_quirks.c')
-rw-r--r-- | drivers/gpu/drm/drm_panel_orientation_quirks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_panel_orientation_quirks.c b/drivers/gpu/drm/drm_panel_orientation_quirks.c index b1a38e6ce2f8..0cb646cb04ee 100644 --- a/drivers/gpu/drm/drm_panel_orientation_quirks.c +++ b/drivers/gpu/drm/drm_panel_orientation_quirks.c @@ -179,7 +179,7 @@ static const struct dmi_system_id orientation_data[] = { }, { /* AYA NEO AIR */ .matches = { DMI_EXACT_MATCH(DMI_SYS_VENDOR, "AYANEO"), - DMI_MATCH(DMI_BOARD_NAME, "AIR"), + DMI_MATCH(DMI_PRODUCT_NAME, "AIR"), }, .driver_data = (void *)&lcd1080x1920_leftside_up, }, { /* AYA NEO NEXT */ |