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: Use seq_puts() for fixed string output Date: Sun, 22 Mar 2026 03:54:18 +1000 Message-ID: In-Reply-To: <20260320073129.145575-1-liuqiangneo@163.com> References: <20260320073129.145575-1-liuqiangneo@163.com> 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: Use seq_puts() for fixed string output Author: liuqiangneo@163.com Patches: 3 Reviewed: 2026-03-22T03:54:18.233754 --- This is a straightforward mechanical cleanup series that replaces `seq_prin= tf()` with `seq_puts()` when printing constant strings (no format specifier= s). The changes are correct and follow a well-established kernel coding con= vention. The series has no functional impact =E2=80=94 `seq_puts()` simply = avoids unnecessary format string parsing overhead. The patches are clean, properly split by file/subsystem, and correctly desc= ribed. No issues found. **Verdict: Acceptable for merge.** One minor note: `seq_printf(m, "\n")` could also be replaced with `seq_putc= (m, '\n')` for a single character, but `seq_puts()` is fine too and consist= ent with the other changes in the series. --- Generated by Claude Code Patch Reviewer