Displaying 1 result from an estimated 1 matches for "new_foreign_owned".
2024 Sep 02
1
[PATCH v2 0/8] DRM Rust abstractions and Nova
...up the DRM device / driver abstractions in three separate commits
> - separate `struct drm_device` abstraction in a separte source file more
> cleanly
> - switch `struct drm_driver` and `struct file_operations` to 'static const'
> allocations
> - implement `Registration::new_foreign_owned` (using `Devres`), such that we
> don't need to keep the `Registration` alive on the Rust side, but
> automatically revoke it on device unbind
> - add missing DRM driver features (Rob)
> - use `module_pci_driver!` macro in Nova
> - use a const sized `pci::Bar` in Nova
> -...