brintos

brintos / linux-shallow public Read only

0
0
Text · 412 B · 3bef873 Raw
17 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2022 Intel Corporation4 */5 6#ifndef __INTEL_MODESET_VERIFY_H__7#define __INTEL_MODESET_VERIFY_H__8 9struct intel_atomic_state;10struct intel_crtc;11 12void intel_modeset_verify_crtc(struct intel_atomic_state *state,13			       struct intel_crtc *crtc);14void intel_modeset_verify_disabled(struct intel_atomic_state *state);15 16#endif /* __INTEL_MODESET_VERIFY_H__ */17