0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef _DRM_DP_MST_HELPER_INTERNAL_H_
0011 #define _DRM_DP_MST_HELPER_INTERNAL_H_
0012
0013 #include <drm/display/drm_dp_mst_helper.h>
0014
0015 void
0016 drm_dp_encode_sideband_req(const struct drm_dp_sideband_msg_req_body *req,
0017 struct drm_dp_sideband_msg_tx *raw);
0018 int drm_dp_decode_sideband_req(const struct drm_dp_sideband_msg_tx *raw,
0019 struct drm_dp_sideband_msg_req_body *req);
0020 void
0021 drm_dp_dump_sideband_msg_req_body(const struct drm_dp_sideband_msg_req_body *req,
0022 int indent, struct drm_printer *printer);
0023
0024 #endif