From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: gpu: nova-core: replace ARef with &'bound Device in SysmemFlush Date: Mon, 18 May 2026 16:24:36 +1000 Message-ID: In-Reply-To: <20260517000149.3226762-27-dakr@kernel.org> References: <20260517000149.3226762-1-dakr@kernel.org> <20260517000149.3226762-27-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 Removes the last `ARef` from `NovaCore`, replacing it with `&'bound Device`: ```rust -pub(crate) struct NovaCore<'bound> { - dev: ARef, +pub(crate) struct NovaCore<'bound> { bar: pci::Bar<'bound>, + dev: &'bound Device, ``` The `Deref` implementation is simplified since no `ARef` unwrapping is needed. Straightforward completion of the nova-core migration. --- Generated by Claude Code Patch Reviewer