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/amdgpu/userq: convert comma to semicolon Date: Sun, 22 Mar 2026 03:50:49 +1000 Message-ID: In-Reply-To: <20260320083247.428482-1-nichen@iscas.ac.cn> References: <20260320083247.428482-1-nichen@iscas.ac.cn> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Overall Series Review Subject: drm/amdgpu/userq: convert comma to semicolon Author: Chen Ni Patches: 1 Reviewed: 2026-03-22T03:50:49.911217 --- This is a single trivial cleanup patch that replaces comma operators (`,`) = with semicolons (`;`) at the end of two assignment statements in `amdgpu_us= erq_fence.c`. The change is cosmetically correct =E2=80=94 using a comma he= re is legal C but misleading, as the comma operator's result is discarded. = There is no functional change since these are standalone expression stateme= nts, not part of a `for`-loop header, macro, or multi-expression context wh= ere a comma would matter. The patch is correct and harmless, but extremely low value. --- Generated by Claude Code Patch Reviewer