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 #include "intel_drv.h" 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 static inline int 14 intel_dp_mst_encoder_active_links(struct intel_digital_port *intel_dig_port) 15 { 16 return intel_dig_port->dp.active_mst_links; 17 } 18 19 20 #endif /* __INTEL_DP_MST_H__ */ 21