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/exynos: fix size_t format string Date: Thu, 28 May 2026 12:08:08 +1000 Message-ID: In-Reply-To: <20260527194525.45762-1-arnd@kernel.org> References: <20260527194525.45762-1-arnd@kernel.org> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Overall Series Review Subject: drm/exynos: fix size_t format string Author: Arnd Bergmann Patches: 2 Reviewed: 2026-05-28T12:08:08.345241 --- This is a single-patch fix from Arnd Bergmann addressing a `-Werror=format` build warning/error in the Exynos DRM GEM code. The `exynos_gem->base.size` field is `size_t`, which is `unsigned int` on 32-bit ARM, but was being printed with `%lx` (expects `unsigned long`). The fix changes the format to `%zx` for size and `%pad` for the DMA address. The patch is correct and straightforward, though there is one minor inconsistency worth noting. **Verdict: Looks good overall, one minor nit.** --- Generated by Claude Code Patch Reviewer