1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2019 Intel Corporation 4 */ 5 6 #ifndef __INTEL_DP_MST_H__ 7 #define __INTEL_DP_MST_H__ 8 9 struct intel_digital_port; 10 11 int intel_dp_mst_encoder_init(struct intel_digital_port *intel_dig_port, int conn_id); 12 void intel_dp_mst_encoder_cleanup(struct intel_digital_port *intel_dig_port); 13 14 #endif /* __INTEL_DP_MST_H__ */ 15