From a8fc3408d65272223d8bd923c13d7c1bd8953273 Mon Sep 17 00:00:00 2001 From: Lyude Paul <lyude@redhat.com> Date: Fri, 13 Dec 2024 14:02:37 -0500 Subject: [PATCH] fixup! WIP: rust: drm/kms: Add RawPlaneState::atomic_helper_check() --- rust/kernel/drm/kms/plane.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/kernel/drm/kms/plane.rs b/rust/kernel/drm/kms/plane.rs index c5507d000ef1d..efe1ba88af031 100644 --- a/rust/kernel/drm/kms/plane.rs +++ b/rust/kernel/drm/kms/plane.rs @@ -524,7 +524,7 @@ pub trait RawPlaneState: AsRawPlaneState { /// Run the atomic check helper for this plane and the given CRTC state. fn atomic_helper_check<S>( &mut self, - crtc_state: &BorrowedCrtcState<'_, S>, + crtc_state: &CrtcStateMutator<'_, S>, can_position: bool, can_update_disabled: bool ) -> Result -- GitLab