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/msm/dsi: rename MSM8998 DSI version from V2_2_0 to V2_0_0 Date: Sun, 22 Mar 2026 03:12:28 +1000 Message-ID: In-Reply-To: <20260321-dsi-rgb101010-support-v4-3-eb28ecebbfe8@pm.me> References: <20260321-dsi-rgb101010-support-v4-0-eb28ecebbfe8@pm.me> <20260321-dsi-rgb101010-support-v4-3-eb28ecebbfe8@pm.me> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Patch Review The old define: ```c #define MSM_DSI_6G_VER_MINOR_V2_2_0 0x20000000 ``` was incorrectly named =E2=80=94 `0x20000000` decodes to v2.0.0, not v2.2.0.= The rename to `V2_0_0` and reordering to maintain version sorting is corre= ct: ```c #define MSM_DSI_6G_VER_MINOR_V2_0_0 0x20000000 #define MSM_DSI_6G_VER_MINOR_V2_1_0 0x20010000 ``` The `dsi_cfg.c` table entry is also reordered to match. The `Fixes:` tag is= appropriate since the original commit introduced the wrong name. **No issues.** Clean cosmetic fix. --- --- Generated by Claude Code Patch Reviewer