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/tyr: Print GPU_ID without filtering Date: Sun, 12 Apr 2026 10:45:09 +1000 Message-ID: In-Reply-To: <20260409-b4-tyr-use-register-macro-v5-v5-2-8abfff8a0204@collabora.com> References: <20260409-b4-tyr-use-register-macro-v5-v5-0-8abfff8a0204@collabora.com> <20260409-b4-tyr-use-register-macro-v5-v5-2-8abfff8a0204@collabora.com> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review Small, straightforward change. ```rust - "mali-{} id 0x{:x} major 0x{:x} minor 0x{:x} status 0x{:x}", + "mali-{} GPU_ID 0x{:x} major 0x{:x} minor 0x{:x} status 0x{:x}", model_name, - gpu_id.into_raw() >> 16, + gpu_id.into_raw(), ``` Now prints the full 32-bit register value instead of only the upper 16 bits. The label is changed from "id" to "GPU_ID" to make it clear this is the full register value. This is a user-visible log format change; existing log parsing scripts (if any) would need updating. The commit message documents the before/after format clearly. No issues. --- Generated by Claude Code Patch Reviewer