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/dp_mst: Replace seq_printf with seq_puts for constant strings Date: Sun, 22 Mar 2026 03:54:18 +1000 Message-ID: In-Reply-To: <20260320073129.145575-3-liuqiangneo@163.com> References: <20260320073129.145575-1-liuqiangneo@163.com> <20260320073129.145575-3-liuqiangneo@163.com> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review Correct and clean. Seven replacements in `drivers/gpu/drm/display/drm_dp_mst_topology.c`, all converting `seq_printf()` calls with constant string arguments (no `%` format specifiers) to `seq_puts()`. The surrounding `seq_printf()` calls that *do* use format specifiers (e.g., `%x`, `%d`, `%*ph`) are correctly left unchanged. No concerns. --- Generated by Claude Code Patch Reviewer