21 lines
504 B
C
21 lines
504 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_DP_MST_H__
|
|
#define __INTEL_DP_MST_H__
|
|
|
|
#include "intel_drv.h"
|
|
|
|
int intel_dp_mst_encoder_init(struct intel_digital_port *intel_dig_port, int conn_id);
|
|
void intel_dp_mst_encoder_cleanup(struct intel_digital_port *intel_dig_port);
|
|
static inline int
|
|
intel_dp_mst_encoder_active_links(struct intel_digital_port *intel_dig_port)
|
|
{
|
|
return intel_dig_port->dp.active_mst_links;
|
|
}
|
|
|
|
|
|
#endif /* __INTEL_DP_MST_H__ */
|