Re: [PATCH v3 1/7] gpu: nova-core: Add public driver API to nova-core
From: Danilo Krummrich
Date: Sat Jul 25 2026 - 11:23:26 EST
On Thu Jul 23, 2026 at 8:30 AM CEST, Alistair Popple wrote:
> +/// API handle for the auxiliary bus child drivers to interact with nova-core.
> +pub struct NovaCoreApi<'bound> {
> + #[expect(unused)]
> + pub(crate) gpu: Pin<&'bound Gpu<'bound>>,
> +}
NIT: Please call the lifetime 'api, 'bound is only for the full scope of the bus
device private data.