1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2025 Intel Corporation 4 */ 5 6 #ifndef __INTEL_COLOR_PIPELINE_H__ 7 #define __INTEL_COLOR_PIPELINE_H__ 8 9 struct drm_plane; 10 enum pipe; 11 12 int intel_color_pipeline_plane_init(struct drm_plane *plane, enum pipe pipe); 13 14 #endif /* __INTEL_COLOR_PIPELINE_H__ */ 15