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/rockchip: dw_dp: Add missing newline in dev_err_probe() message Date: Thu, 04 Jun 2026 13:55:05 +1000 Message-ID: In-Reply-To: <20260601-drm-rk-fixes-v4-2-c3f3f123e1da@collabora.com> References: <20260601-drm-rk-fixes-v4-0-c3f3f123e1da@collabora.com> <20260601-drm-rk-fixes-v4-2-c3f3f123e1da@collabora.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 **Correctness: Good.** Trivial fix adding `\n` to the `dev_err_probe()` for= mat string: ```c - "Failed to init bridge connector"); + "Failed to init bridge connector\n"); ``` This is correct =E2=80=94 `dev_err_probe()` uses `dev_err()` internally whi= ch does not append a newline, so the caller must provide it. **Has two Fixes tags**, one for the original code and one for a simplificat= ion commit that touched this line. Both are reasonable. No issues. --- Generated by Claude Code Patch Reviewer