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: use devm_drm_panel_add() in more drivers Date: Mon, 25 May 2026 16:58:16 +1000 Message-ID: In-Reply-To: References: X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Overall Series Review Subject: drm/panel: use devm_drm_panel_add() in more drivers Author: Myeonghun Pak Patches: 3 Reviewed: 2026-05-25T16:58:16.775361 --- This is a clean, straightforward 2-patch series converting two panel driver= s from `drm_panel_add()` to `devm_drm_panel_add()`. The motivation is sound= : both drivers had a bug where `drm_panel_add()` was called before `mipi_ds= i_attach()`, and if the attach failed, probe returned with the panel still = registered in the global panel list =E2=80=94 a resource leak. Using `devm_= drm_panel_add()` ensures the panel is automatically unregistered via devres= on any subsequent probe failure or on driver removal. The patches are correct, minimal, and well-described. The `Fixes:` tags and= `Cc: stable` are appropriate since these are real resource leak bugs. The = devres ordering is correct in both drivers. **Verdict: Both patches look good to merge.** --- --- Generated by Claude Code Patch Reviewer