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/radeon: replace nested min calls with min3 Date: Sun, 12 Apr 2026 13:20:25 +1000 Message-ID: In-Reply-To: <20260407181407.1052586-2-thorsten.blum@linux.dev> References: <20260407181407.1052586-2-thorsten.blum@linux.dev> 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/radeon: replace nested min calls with min3 Author: Thorsten Blum Patches: 1 Reviewed: 2026-04-12T13:20:25.604923 --- This is a single, straightforward cleanup patch that replaces nested `min()= ` calls with `min3()` in two radeon driver files. The change is purely cosm= etic/readability =E2=80=94 it produces identical behavior since `min3(a, b,= c)` is defined as `min(a, min(b, c))` in the kernel's `minmax.h`. The patc= h is correct and harmless. **Verdict:** Looks good. Trivial cleanup, no functional change. --- Generated by Claude Code Patch Reviewer