From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: iopoll: fix function parameter names in read_poll_timeout_atomic() Date: Mon, 09 Mar 2026 08:11:16 +1000 Message-ID: In-Reply-To: <20260306221033.2357305-1-rdunlap@infradead.org> References: <20260306221033.2357305-1-rdunlap@infradead.org> 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: iopoll: fix function parameter names in read_poll_timeout_atomic() Author: Randy Dunlap Patches: 1 Reviewed: 2026-03-09T08:11:16.714489 --- This is a single-patch series that fixes kernel-doc warnings for `read_poll= _timeout_atomic()` in `include/linux/iopoll.h`. The fix is straightforward = and correct: the macro's parameter names (`sleep_us`, `sleep_before_read`) = didn't match the kernel-doc comments (`delay_us`, `delay_before_read`), cau= sing kernel-doc warnings. The v2 approach=E2=80=94renaming the parameters t= o match the documentation rather than the other way around=E2=80=94is the r= ight call, since "delay" is semantically more accurate for an atomic (non-s= leeping) context that uses `udelay()` rather than `usleep_range()`. **Verdict: Patch looks good.** --- Generated by Claude Code Patch Reviewer