mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 14:15:10 +07:00
15 lines
363 B
C
15 lines
363 B
C
|
/* SPDX-License-Identifier: MIT */
|
||
|
/*
|
||
|
* Copyright © 2019 Intel Corporation
|
||
|
*/
|
||
|
|
||
|
#ifndef __INTEL_DP_MST_H__
|
||
|
#define __INTEL_DP_MST_H__
|
||
|
|
||
|
struct intel_digital_port;
|
||
|
|
||
|
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);
|
||
|
|
||
|
#endif /* __INTEL_DP_MST_H__ */
|