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: Tue, 26 May 2026 06:47:02 +1000 Message-ID: In-Reply-To: <20260525202921.124698-4-dakr@kernel.org> References: <20260525202921.124698-1-dakr@kernel.org> <20260525202921.124698-4-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 Moves the `'static` bound from all bus adapter trait impls to `Registration::new()`: ```rust -impl Registration { +impl Registration { ... pub fn new(...) -> impl PinInit + where + T: 'static, ``` Removes `+ 'static` from all `Adapter`, `DriverLayout`, `RegistrationOps` impls across all buses, and drops `Send` from the driver traits (it moves to `type Data: Send`). Large but mechanical. No issues. --- Generated by Claude Code Patch Reviewer