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: io: make IoMem and ExclusiveIoMem lifetime-parameterized Date: Tue, 26 May 2026 06:47:03 +1000 Message-ID: In-Reply-To: <20260525202921.124698-20-dakr@kernel.org> References: <20260525202921.124698-1-dakr@kernel.org> <20260525202921.124698-20-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 Same pattern as patch 18. `IoMem` becomes `IoMem<'a, SIZE>` with a `dev: &'a Device` field. The `iomap_sized()` and related methods now return `Result>` directly. Both `IoMem` and `ExclusiveIoMem` get `into_devres()` with the same transmute pattern. The tyr and pwm drivers are updated to use `IoMem<'static, SIZE>` with `into_devres()`. The doc examples are simplified to show direct access without Devres indirection. --- Generated by Claude Code Patch Reviewer