We're passing in a totally random mismash of things into the state checker. Clean it up to pass in the minimum needed. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20231004155607.7719-11-ville.syrjala@linux.intel.com Reviewed-by: Jani Nikula <jani.nikula@intel.com>
16 lines
412 B
C
16 lines
412 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2022 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_MODESET_VERIFY_H__
|
|
#define __INTEL_MODESET_VERIFY_H__
|
|
|
|
struct intel_atomic_state;
|
|
struct intel_crtc;
|
|
|
|
void intel_modeset_verify_crtc(struct intel_atomic_state *state,
|
|
struct intel_crtc *crtc);
|
|
void intel_modeset_verify_disabled(struct intel_atomic_state *state);
|
|
|
|
#endif /* __INTEL_MODESET_VERIFY_H__ */
|