From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: spi: use rest_of_page() macro where appropriate Date: Thu, 05 Mar 2026 13:59:11 +1000 Message-ID: In-Reply-To: <20260304012717.201797-6-ynorov@nvidia.com> References: <20260304012717.201797-1-ynorov@nvidia.com> <20260304012717.201797-6-ynorov@nvidia.com> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review - `spi-pl022.c`: Correct. - `spi.c`: The triple-nested `min_t` is now on one line: ```c + min = min_t(size_t, desc_len, min_t(size_t, len, rest_of_page(buf))); ``` This is borderline on line length but still within 100 chars. Correct. No issues. --- Generated by Claude Code Patch Reviewer