1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2024 Intel Corporation 4 */ 5 6 #ifndef __INTEL_PFIT_H__ 7 #define __INTEL_PFIT_H__ 8 9 struct drm_connector_state; 10 struct intel_crtc_state; 11 12 int intel_panel_fitting(struct intel_crtc_state *crtc_state, 13 const struct drm_connector_state *conn_state); 14 15 #endif /* __INTEL_PFIT_H__ */ 16