From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: drm: panel-orientation-quirks: Add Ayaneo 3 Date: Tue, 17 Feb 2026 07:19:40 +1000 Message-ID: In-Reply-To: <20260216204547.293291-4-lkml@antheas.dev> References: <20260216204547.293291-1-lkml@antheas.dev> <20260216204547.293291-4-lkml@antheas.dev> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review > + }, { /* AYANEO 3 */ > + .matches = { > + DMI_EXACT_MATCH(DMI_SYS_VENDOR, "AYANEO"), > + DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "AYANEO 3"), > + }, > + .driver_data = (void *)&lcd1080x1920_rightside_up, The commit message explains the Ayaneo 3 ships with two panel options (OLED portrait 1080x1920, IPS landscape 1920x1080) sharing the same DMI data. This approach works correctly because `drm_get_panel_orientation_quirk()` checks `data->width != width || data->height != height`, so the quirk only applies when the panel reports 1080x1920 (portrait), not 1920x1080 (landscape). Good commit message explaining the rationale. No issues found. --- Generated by Claude Code Patch Reviewer