diff options
author | Tomeu Vizoso <tomeu.vizoso@collabora.com> | 2017-03-03 16:39:35 +0300 |
---|---|---|
committer | Sean Paul <seanpaul@chromium.org> | 2017-03-06 20:14:27 +0300 |
commit | 737d6e339f50dcdbd5a8444d04dede2f0d305361 (patch) | |
tree | 5432fabf4d8506b2903db17f2bfb3cdbcea877ea /include/drm/bridge | |
parent | 79c1da7c3bf74be9b1dae9450ef79f32dd22def6 (diff) | |
download | linux-737d6e339f50dcdbd5a8444d04dede2f0d305361.tar.xz |
drm/bridge: analogix_dp: add helpers for capture of frame CRCs
Add two simple functions that just take the drm_dp_aux from our struct
and calls the corresponding DP helpers with it.
v6: Pass to the DP helper the drm_crtc of the current connector (Sean Paul)
Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Signed-off-by: Sean Paul <seanpaul@chromium.org>
Link: http://patchwork.freedesktop.org/patch/msgid/20170303133936.14964-4-tomeu.vizoso@collabora.com
Diffstat (limited to 'include/drm/bridge')
-rw-r--r-- | include/drm/bridge/analogix_dp.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/drm/bridge/analogix_dp.h b/include/drm/bridge/analogix_dp.h index f6f0c062205c..c99d6eaef1ac 100644 --- a/include/drm/bridge/analogix_dp.h +++ b/include/drm/bridge/analogix_dp.h @@ -49,4 +49,7 @@ int analogix_dp_bind(struct device *dev, struct drm_device *drm_dev, struct analogix_dp_plat_data *plat_data); void analogix_dp_unbind(struct device *dev, struct device *master, void *data); +int analogix_dp_start_crc(struct drm_connector *connector); +int analogix_dp_stop_crc(struct drm_connector *connector); + #endif /* _ANALOGIX_DP_H_ */ |