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/gem: Fix printk specifier for gem_object.size and dma_addr Date: Sun, 12 Apr 2026 13:01:45 +1000 Message-ID: In-Reply-To: <20260408064936.1342321-1-wenst@chromium.org> References: <20260408064936.1342321-1-wenst@chromium.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/gem: Fix printk specifier for gem_object.size and dma_addr Author: Chen-Yu Tsai Patches: 1 Reviewed: 2026-04-12T13:01:45.666653 --- This is a single, straightforward fix patch that corrects printk format specifiers in the Exynos GEM driver. The change was prompted by a kernel test robot build warning after a prior commit (`11e898373fba`) changed the `size` field from `unsigned long` to `size_t` (by switching from `exynos_gem->size` to `exynos_gem->base.size`). On 32-bit ARM, `size_t` is `unsigned int`, not `unsigned long`, so `%lx` produces a warning. The patch is correct, minimal, and well-motivated. **No issues found.** --- Generated by Claude Code Patch Reviewer