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: fix pclk calculation for bonded dsi Date: Mon, 09 Mar 2026 07:54:17 +1000 Message-ID: In-Reply-To: <20260308070628.482527-1-mitltlatltl@gmail.com> References: <20260308070628.482527-1-mitltlatltl@gmail.com> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Overall Series Review Subject: drm/msm/dsi: fix pclk calculation for bonded dsi Author: Pengyu Luo Patches: 2 Reviewed: 2026-03-09T07:54:17.628899 --- This is a single-patch fix for a pixel clock (pclk) calculation issue in bonded DSI mode with DSC compression. The fix is correct and well-motivated. In bonded DSI, each link carries half the display width independently, so the DSC compression rounding (DIV_ROUND_UP) should be applied to each half separately rather than to the full width. The current code rounds once on the full width, which can produce a result that differs by one pixel from what the hardware is actually programmed with in `dsi_timing_setup()`. The patch has a Reviewed-by from Dmitry Baryshkov and a Fixes tag. The logic is sound and the change is minimal. --- Generated by Claude Code Patch Reviewer