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/ast: dp501: Fix initialization of SCU2C Date: Wed, 25 Mar 2026 07:46:39 +1000 Message-ID: In-Reply-To: <20260323160407.245773-2-tzimmermann@suse.de> References: <20260323160407.245773-1-tzimmermann@suse.de> <20260323160407.245773-2-tzimmermann@suse.de> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review Good bugfix. The existing code at `ast_dp501.c:439` writes to address 0 instead of 0x1202c: ```c - ast_write32(ast, 0, data); + ast_write32(ast, 0x1202c, data); ``` This has been broken since the original commit `83c6620bae3f` (v3.16). Correctly tagged with Fixes and Cc: stable. Clean and obvious fix. --- Generated by Claude Code Patch Reviewer