Skip to content

Commit d7972d7

Browse files
Samsagaxlumag
authored andcommitted
drm: panel-orientation-quirks: Add quirk for AYA NEO Founder edition
Add quirk orientation for AYA NEO Founder. The name appears with spaces in DMI strings as other devices of the brand. The panel is the same as the NEXT and 2021 models. Those could not be reused as the former has VENDOR name as "AYANEO" without spaces and the latter has "AYADEVICE". Tested by the JELOS team that has been patching their own kernel for a while now and confirmed by users in the AYA NEO and ChimeraOS discord servers. Signed-off-by: Joaquín Ignacio Aramendía <samsagax@gmail.com> Signed-off-by: Tobias Jakobi <tjakobi@math.uni-bielefeld.de> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/f71889a0b39f13f4b78481bd030377ca15035680.1726492131.git.tjakobi@math.uni-bielefeld.de Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
1 parent 361ebf5 commit d7972d7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

drivers/gpu/drm/drm_panel_orientation_quirks.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,12 @@ static const struct dmi_system_id orientation_data[] = {
202202
DMI_MATCH(DMI_PRODUCT_NAME, "AIR"),
203203
},
204204
.driver_data = (void *)&lcd1080x1920_leftside_up,
205+
}, { /* AYA NEO Founder */
206+
.matches = {
207+
DMI_EXACT_MATCH(DMI_SYS_VENDOR, "AYA NEO"),
208+
DMI_MATCH(DMI_PRODUCT_NAME, "AYA NEO Founder"),
209+
},
210+
.driver_data = (void *)&lcd800x1280_rightside_up,
205211
}, { /* AYA NEO NEXT */
206212
.matches = {
207213
DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AYANEO"),

0 commit comments

Comments
 (0)