Re: [RFC v3 02/33] rust: drm: Add traits for registering KMS devices

2025-05-12 Thread Daniel Almeida
Hi Lyude, > On 5 Mar 2025, at 19:59, Lyude Paul wrote: > > This commit adds some traits for registering DRM devices with KMS support, > implemented through the kernel::drm::kms::KmsDriver trait. Devices which > don't have KMS support can simply use PhantomData. > > Signed-off-by: Lyude Paul >

Re: [RFC v3 02/33] rust: drm: Add traits for registering KMS devices

2025-04-04 Thread Louis Chauvet
On 05/03/25 - 17:59, Lyude Paul wrote: > This commit adds some traits for registering DRM devices with KMS support, > implemented through the kernel::drm::kms::KmsDriver trait. Devices which > don't have KMS support can simply use PhantomData. > > Signed-off-by: Lyude Paul > > --- > > V3: > * G

Re: [RFC v3 02/33] rust: drm: Add traits for registering KMS devices

2025-03-21 Thread Lyude Paul
On Fri, 2025-03-14 at 11:05 +0100, Maxime Ripard wrote: > Hi Lyude, > > First off, thanks for keeping up with this series. > > I'm quite familiar with Rust in userspace, but not so much in the > kernel, so I might have stupid questions or points, sorry I advance :) Absolutely not a problem! I'm

Re: [RFC v3 02/33] rust: drm: Add traits for registering KMS devices

2025-03-14 Thread Maxime Ripard
Hi Lyude, First off, thanks for keeping up with this series. I'm quite familiar with Rust in userspace, but not so much in the kernel, so I might have stupid questions or points, sorry I advance :) On Wed, Mar 05, 2025 at 05:59:18PM -0500, Lyude Paul wrote: > This commit adds some traits for reg

[RFC v3 02/33] rust: drm: Add traits for registering KMS devices

2025-03-05 Thread Lyude Paul
This commit adds some traits for registering DRM devices with KMS support, implemented through the kernel::drm::kms::KmsDriver trait. Devices which don't have KMS support can simply use PhantomData. Signed-off-by: Lyude Paul --- V3: * Get rid of Kms, long live KmsDriver After Daniel pointed o