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: chrontel-ch7033: switch to of_drm_get_bridge_by_endpoint() Date: Sat, 16 May 2026 15:02:23 +1000 Message-ID: In-Reply-To: <20260511-drm-bridge-alloc-getput-panel_or_bridge-v6-5-f61c9e498b3f@bootlin.com> References: <20260511-drm-bridge-alloc-getput-panel_or_bridge-v6-0-f61c9e498b3f@bootlin.com> <20260511-drm-bridge-alloc-getput-panel_or_bridge-v6-5-f61c9e498b3f@bootlin.com> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Patch Review Good conversion. Removes the separate `next_bridge` field and migrates to `= bridge.next_bridge`, which is auto-put when the bridge is freed (verified i= n the kernel tree =E2=80=94 `__drm_bridge_free()` calls `drm_bridge_put(bri= dge->next_bridge)`). All references consistently updated: ```c - return drm_bridge_detect(priv->next_bridge, connector); + return drm_bridge_detect(priv->bridge.next_bridge, connector); ``` No issues. --- Generated by Claude Code Patch Reviewer