aboutsummaryrefslogtreecommitdiffstats
path: root/include/drm/drm_scdc_helper.h
diff options
context:
space:
mode:
authorSean Paul <seanpaul@chromium.org>2017-07-20 16:09:14 -0400
committerThierry Reding <treding@nvidia.com>2017-07-31 14:24:14 +0200
commit6c70faf1b5d32eb7fa868f1730c51698b53ac677 (patch)
tree3da23135ac16713621469bb0c2b2679aee254957 /include/drm/drm_scdc_helper.h
parentdrm/modes: Fix drm_mode_is_420_only() comment (diff)
downloadlinux-dev-6c70faf1b5d32eb7fa868f1730c51698b53ac677.tar.xz
linux-dev-6c70faf1b5d32eb7fa868f1730c51698b53ac677.zip
drm: Fix warning when building docs for scdc_helper
Fixes: ../drivers/gpu/drm/drm_scdc_helper.c:203: ERROR: Unexpected indentation. ../drivers/gpu/drm/drm_scdc_helper.c:204: WARNING: Block quote ends without a blank line; unexpected unindent. Changes in v2: - Property blockquote TMDS calculations so they look pretty (Daniel) - Remove duplicate documentation from the header file Signed-off-by: Sean Paul <seanpaul@chromium.org> Reviewed-by: Shashank Sharma <shashank.sharma@intel.com> Signed-off-by: Thierry Reding <treding@nvidia.com> Link: https://patchwork.freedesktop.org/patch/msgid/20170720200921.36897-1-seanpaul@chromium.org
Diffstat (limited to 'include/drm/drm_scdc_helper.h')
-rw-r--r--include/drm/drm_scdc_helper.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/include/drm/drm_scdc_helper.h b/include/drm/drm_scdc_helper.h
index c25122bb490a..f92eb2094d6b 100644
--- a/include/drm/drm_scdc_helper.h
+++ b/include/drm/drm_scdc_helper.h
@@ -131,31 +131,6 @@ static inline int drm_scdc_writeb(struct i2c_adapter *adapter, u8 offset,
bool drm_scdc_get_scrambling_status(struct i2c_adapter *adapter);
-/**
- * drm_scdc_set_scrambling - enable scrambling
- * @adapter: I2C adapter for DDC channel
- * @enable: bool to indicate if scrambling is to be enabled/disabled
- *
- * Writes the TMDS config register over SCDC channel, and:
- * enables scrambling when enable = 1
- * disables scrambling when enable = 0
- *
- * Returns:
- * True if scrambling is set/reset successfully, false otherwise.
- */
bool drm_scdc_set_scrambling(struct i2c_adapter *adapter, bool enable);
-
-/**
- * drm_scdc_set_high_tmds_clock_ratio - set TMDS clock ratio
- * @adapter: I2C adapter for DDC channel
- * @set: ret or reset the high clock ratio
- *
- * Writes to the TMDS config register over SCDC channel, and:
- * sets TMDS clock ratio to 1/40 when set = 1
- * sets TMDS clock ratio to 1/10 when set = 0
- *
- * Returns:
- * True if write is successful, false otherwise.
- */
bool drm_scdc_set_high_tmds_clock_ratio(struct i2c_adapter *adapter, bool set);
#endif