From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: rust: driver: move 'static bounds to constructor Date: Mon, 25 May 2026 19:29:13 +1000 Message-ID: In-Reply-To: <20260521233501.1191842-3-dakr@kernel.org> References: <20260521233501.1191842-1-dakr@kernel.org> <20260521233501.1191842-3-dakr@kernel.org> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review **Author:** Gary Guo Moves `'static` bounds from trait implementations (e.g., `unsafe impl`) to the `Registration::new()` constructor. This is a clean separation: the traits themselves no longer impose `'static`, but the existing constructors still require it until later patches relax them. The pattern is applied consistently across all bus modules (auxiliary, pci, platform, usb, i2c) and the device core. No issues. --- --- Generated by Claude Code Patch Reviewer