Re: [PATCH v2 3/8] rust: drm: add driver abstractions

2025-04-18 Thread Lyude Paul
On Fri, 2025-04-11 at 01:55 +0200, Danilo Krummrich wrote: > From: Asahi Lina > > Implement the DRM driver abstractions. > > The `Driver` trait provides the interface to the actual driver to fill > in the driver specific data, such as the `DriverInfo`, driver features > and IOCTLs. > > Reviewed

Re: [PATCH v2 3/8] rust: drm: add driver abstractions

2025-04-14 Thread Alyssa Rosenzweig
Reviewed-by: Alyssa Rosenzweig

Re: [PATCH v2 3/8] rust: drm: add driver abstractions

2024-09-04 Thread Lyude Paul
On Mon, 2024-09-02 at 18:29 +0200, Daniel Vetter wrote: > On Wed, Jun 19, 2024 at 01:31:39AM +0200, Danilo Krummrich wrote: > > Implement the DRM driver abstractions. > > > > The `Driver` trait provides the interface to the actual driver to fill > > in the driver specific data, such as the `Driver

Re: [PATCH v2 3/8] rust: drm: add driver abstractions

2024-09-03 Thread Simona Vetter
On Tue, Sep 03, 2024 at 01:11:55PM +0200, Danilo Krummrich wrote: > On Mon, Sep 02, 2024 at 06:29:06PM +0200, Daniel Vetter wrote: > > On Wed, Jun 19, 2024 at 01:31:39AM +0200, Danilo Krummrich wrote: > > > Implement the DRM driver abstractions. > > > > > > The `Driver` trait provides the interfac

Re: [PATCH v2 3/8] rust: drm: add driver abstractions

2024-09-03 Thread Asahi Lina
On 9/3/24 1:29 AM, Daniel Vetter wrote: > On Wed, Jun 19, 2024 at 01:31:39AM +0200, Danilo Krummrich wrote: >> Implement the DRM driver abstractions. >> >> The `Driver` trait provides the interface to the actual driver to fill >> in the driver specific data, such as the `DriverInfo`, driver feat

Re: [PATCH v2 3/8] rust: drm: add driver abstractions

2024-09-03 Thread Danilo Krummrich
On Mon, Sep 02, 2024 at 06:29:06PM +0200, Daniel Vetter wrote: > On Wed, Jun 19, 2024 at 01:31:39AM +0200, Danilo Krummrich wrote: > > Implement the DRM driver abstractions. > > > > The `Driver` trait provides the interface to the actual driver to fill > > in the driver specific data, such as the

Re: [PATCH v2 3/8] rust: drm: add driver abstractions

2024-09-02 Thread Daniel Vetter
On Wed, Jun 19, 2024 at 01:31:39AM +0200, Danilo Krummrich wrote: > Implement the DRM driver abstractions. > > The `Driver` trait provides the interface to the actual driver to fill > in the driver specific data, such as the `DriverInfo`, driver features > and IOCTLs. > > Co-developed-by: Asahi L