1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2022 Intel Corporation 4 */ 5 6 #ifndef __INTEL_CRTC_STATE_DUMP_H__ 7 #define __INTEL_CRTC_STATE_DUMP_H__ 8 9 struct intel_crtc_state; 10 struct intel_atomic_state; 11 12 void intel_crtc_state_dump(const struct intel_crtc_state *crtc_state, 13 struct intel_atomic_state *state, 14 const char *context); 15 16 #endif /* __INTEL_CRTC_STATE_H__ */ 17