]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/dp: add missing ')' to I2C nack debug message
authorPaulo Zanoni <paulo.r.zanoni@intel.com>
Fri, 27 Jul 2018 20:33:31 +0000 (13:33 -0700)
committerRodrigo Vivi <rodrigo.vivi@intel.com>
Wed, 1 Aug 2018 17:00:15 +0000 (10:00 -0700)
 "(an unmatched left parenthesis
  creates an unresolved tension
  that will stay with you all day."
               -- Randall Munroe

Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180727203331.27778-1-paulo.r.zanoni@intel.com
drivers/gpu/drm/drm_dp_helper.c

index 0cccbcb2d03ea8670e71ee62a9bd6526db6b0b97..8c6b9fd89f8acabd687e38f0be165316b1dbc031 100644 (file)
@@ -850,7 +850,8 @@ static int drm_dp_i2c_do_msg(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg)
                        return ret;
 
                case DP_AUX_I2C_REPLY_NACK:
-                       DRM_DEBUG_KMS("I2C nack (result=%d, size=%zu\n", ret, msg->size);
+                       DRM_DEBUG_KMS("I2C nack (result=%d, size=%zu)\n",
+                                     ret, msg->size);
                        aux->i2c_nack_count++;
                        return -EREMOTEIO;