xref: /netbsd-src/sys/external/bsd/drm2/dist/drm/i915/display/intel_dp_link_training.h (revision 41ec02673d281bbb3d38e6c78504ce6e30c228c1)
1 /*	$NetBSD: intel_dp_link_training.h,v 1.2 2021/12/18 23:45:30 riastradh Exp $	*/
2 
3 /* SPDX-License-Identifier: MIT */
4 /*
5  * Copyright © 2019 Intel Corporation
6  */
7 
8 #ifndef __INTEL_DP_LINK_TRAINING_H__
9 #define __INTEL_DP_LINK_TRAINING_H__
10 
11 struct intel_dp;
12 
13 void intel_dp_start_link_train(struct intel_dp *intel_dp);
14 void intel_dp_stop_link_train(struct intel_dp *intel_dp);
15 
16 #endif /* __INTEL_DP_LINK_TRAINING_H__ */
17