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/msm: Fix GMEM_BASE for A650 Date: Mon, 16 Mar 2026 12:09:19 +1000 Message-ID: In-Reply-To: <20260314-fix-gmem-base-a650-v1-1-3308f60cf74c@pm.me> References: <20260314-fix-gmem-base-a650-v1-1-3308f60cf74c@pm.me> 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/msm: Fix GMEM_BASE for A650 Author: Alexander Koskovich Patches: 1 Reviewed: 2026-03-16T12:09:19.699308 --- This is a single-patch fix for a regression introduced by commit dc220915ddb2. The analysis is straightforward and correct. The original code used `adreno_is_a650_family()` which covers both `ADRENO_6XX_GEN3` (a650) and `ADRENO_6XX_GEN4` (a660), plus `adreno_is_a740_family()`. When that was refactored to a `>=` comparison, it was changed to `>= ADRENO_6XX_GEN4`, which excluded GEN3 (a650). The fix correctly changes the threshold to `>= ADRENO_6XX_GEN3`. The patch is correct and should be applied. --- Generated by Claude Code Patch Reviewer