Re: [PATCH v3 1/7] gpu: nova-core: Add public driver API to nova-core
"Danilo Krummrich" <[email protected]> Sat, 25 Jul 2026 17:23:17 +0200
| Newsgroups | dev.linux.lists.nova-gpu,org.kernel.vger.linux-kernel,org.kernel.vger.rust-for-linux |
|---|---|
| Message-ID | <[email protected]> |
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.