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: Thu, 07 May 2026 13:02:05 +1000 Message-ID: In-Reply-To: <20260506215113.851360-19-dakr@kernel.org> References: <20260506215113.851360-1-dakr@kernel.org> <20260506215113.851360-19-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 Mirrors patch 17 for platform I/O memory. `IoMem` becomes `IoMem<'bound, SIZE>` with the same `into_devres()` pattern using `core::mem::transmute`. Same safety reasoning applies. The `IoMem` now stores `dev: &'bound Device` which is only used in `into_devres` to pass to `Devres::new`. No issues found. --- Generated by Claude Code Patch Reviewer