Declutter intel_display.c by splitting out crtc state dumping to a separate file. v2: intel_pipe_config_dump -> intel_crtc_state_dump Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/f72a5626473692910263671af91e02251ed87eea.1655372759.git.jani.nikula@intel.com
16 lines
383 B
C
16 lines
383 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2022 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_CRTC_STATE_DUMP_H__
|
|
#define __INTEL_CRTC_STATE_DUMP_H__
|
|
|
|
struct intel_crtc_state;
|
|
struct intel_atomic_state;
|
|
|
|
void intel_crtc_state_dump(const struct intel_crtc_state *crtc_state,
|
|
struct intel_atomic_state *state,
|
|
const char *context);
|
|
|
|
#endif /* __INTEL_CRTC_STATE_H__ */
|