From: Thierry Reding Date: Fri, 1 Sep 2017 14:44:30 +0000 (+0200) Subject: drm/scdc-helper: Use consistent spelling for TMDS X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b7df5749c2f883c4a9b166e3ebb82f9627eddab1;p=linux.git drm/scdc-helper: Use consistent spelling for TMDS The file uses inconsistent capitalization for TMDS. Since it is an abbreviation, all uppercase is correct. Reviewed-by: Ville Syrjälä Signed-off-by: Thierry Reding Link: https://patchwork.freedesktop.org/patch/msgid/20170901144430.19164-3-thierry.reding@gmail.com --- diff --git a/drivers/gpu/drm/drm_scdc_helper.c b/drivers/gpu/drm/drm_scdc_helper.c index ec69ce7ab895c..5b89a5c6114ff 100644 --- a/drivers/gpu/drm/drm_scdc_helper.c +++ b/drivers/gpu/drm/drm_scdc_helper.c @@ -168,7 +168,7 @@ bool drm_scdc_set_scrambling(struct i2c_adapter *adapter, bool enable) ret = drm_scdc_readb(adapter, SCDC_TMDS_CONFIG, &config); if (ret < 0) { - DRM_ERROR("Failed to read tmds config: %d\n", ret); + DRM_ERROR("Failed to read TMDS config: %d\n", ret); return false; } @@ -223,7 +223,7 @@ bool drm_scdc_set_high_tmds_clock_ratio(struct i2c_adapter *adapter, bool set) ret = drm_scdc_readb(adapter, SCDC_TMDS_CONFIG, &config); if (ret < 0) { - DRM_ERROR("Failed to read tmds config: %d\n", ret); + DRM_ERROR("Failed to read TMDS config: %d\n", ret); return false; }