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/tyr: Use vertical style for imports Date: Tue, 24 Feb 2026 09:40:14 +1000 Message-ID: In-Reply-To: <20260223203833.207955-1-deborah.brouwer@collabora.com> References: <20260223203833.207955-1-deborah.brouwer@collabora.com> 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/tyr: Use vertical style for imports Author: Deborah Brouwer Patches: 1 Reviewed: 2026-02-24T09:40:14.454293 --- This is a single patch that converts Rust import statements in the Tyr DRM driver from flat/individual `use` statements to grouped vertical layout using nested braces. The motivation is to align with the kernel Rust coding guidelines documented at `docs.kernel.org/rust/coding-guidelines.html#imports`, which recommend the vertical style for easier conflict resolution during rebasing. The change is purely mechanical and touches only import blocks across five files (`driver.rs`, `file.rs`, `gem.rs`, `gpu.rs`, `regs.rs`). I verified that the set of imported symbols is identical before and after the patch in all five files. No functional change is introduced. No issues found. The patch is straightforward and correct. --- Generated by Claude Code Patch Reviewer