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/bridge: simple-bridge: Add support for MStar TSUMU88ADT3-LF-1 Date: Wed, 04 Mar 2026 07:49:52 +1000 Message-ID: In-Reply-To: <20260303082038.11352-4-clamor95@gmail.com> References: <20260303082038.11352-1-clamor95@gmail.com> <20260303082038.11352-4-clamor95@gmail.com> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review **Author:** Maxim Schwalm / Svyatoslav Ryhel Adds the `of_device_id` entry for the MStar bridge in the simple-bridge driver. ```c + }, { + .compatible = "mstar,tsumu88adt3-lf-1", + .data = &(const struct simple_bridge_info) { + .connector_type = DRM_MODE_CONNECTOR_HDMIA, + }, ``` - **Alphabetical ordering:** Correct. Placed after `asl-tek,cs5263` and before `parade,ps185hdm` in the `of_device_id` table. - **Connector type:** `DRM_MODE_CONNECTOR_HDMIA` is correct for an HDMI bridge. - **No timings:** The entry does not specify `.timings`, which means the bridge has no special timing constraints. This is consistent with other HDMI bridge entries in the table (e.g., `algoltek,ag6311`, `parade,ps185hdm`, `radxa,ra620`), and matches the cover letter description of a simple HDMI bridge. - **Code style:** Matches the existing compound literal pattern used throughout the table. No issues. --- Generated by Claude Code Patch Reviewer