Re: [PATCH v7 02/16] rust: implement generic driver registration

2025-01-02 Thread Danilo Krummrich
Hi Gary, On Tue, Dec 24, 2024 at 07:58:21PM +, Gary Guo wrote: > On Thu, 19 Dec 2024 18:04:04 +0100 > Danilo Krummrich wrote: > > > Implement the generic `Registration` type and the `RegistrationOps` > > trait. > > > > The `Registration` structure is the common type that represents a driver

Re: [PATCH v7 02/16] rust: implement generic driver registration

2024-12-24 Thread Gary Guo
On Thu, 19 Dec 2024 18:04:04 +0100 Danilo Krummrich wrote: > Implement the generic `Registration` type and the `RegistrationOps` > trait. > > The `Registration` structure is the common type that represents a driver > registration and is typically bound to the lifetime of a module. However, > it

[PATCH v7 02/16] rust: implement generic driver registration

2024-12-19 Thread Danilo Krummrich
Implement the generic `Registration` type and the `RegistrationOps` trait. The `Registration` structure is the common type that represents a driver registration and is typically bound to the lifetime of a module. However, it doesn't implement actual calls to the kernel's driver core to register dr