1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2022 Intel Corporation 4 */ 5 6 #ifndef __INTEL_MODESET_VERIFY_H__ 7 #define __INTEL_MODESET_VERIFY_H__ 8 9 struct drm_i915_private; 10 struct intel_atomic_state; 11 struct intel_crtc; 12 struct intel_crtc_state; 13 14 void intel_modeset_verify_crtc(struct intel_crtc *crtc, 15 struct intel_atomic_state *state, 16 struct intel_crtc_state *old_crtc_state, 17 struct intel_crtc_state *new_crtc_state); 18 void intel_modeset_verify_disabled(struct drm_i915_private *dev_priv, 19 struct intel_atomic_state *state); 20 21 #endif /* __INTEL_MODESET_VERIFY_H__ */ 22