if (!done)
                drm_err(&i915->drm,
-                       "%s did not complete or timeout within %ums (status 0x%08x)\n",
+                       "%s: did not complete or timeout within %ums (status 0x%08x)\n",
                        intel_dp->aux.name, timeout_ms, status);
 #undef C
 
                const u32 status = intel_uncore_read(uncore, ch_ctl);
 
                if (status != intel_dp->aux_busy_last_status) {
-                       WARN(1, "dp_aux_ch not started status 0x%08x\n",
-                            status);
+                       WARN(1, "%s: not started (status 0x%08x)\n",
+                            intel_dp->aux.name, status);
                        intel_dp->aux_busy_last_status = status;
                }
 
        }
 
        if ((status & DP_AUX_CH_CTL_DONE) == 0) {
-               drm_err(&i915->drm, "dp_aux_ch not done status 0x%08x\n",
-                       status);
+               drm_err(&i915->drm, "%s: not done (status 0x%08x)\n",
+                       intel_dp->aux.name, status);
                ret = -EBUSY;
                goto out;
        }
         * Timeouts occur when the sink is not connected
         */
        if (status & DP_AUX_CH_CTL_RECEIVE_ERROR) {
-               drm_err(&i915->drm, "dp_aux_ch receive error status 0x%08x\n",
-                       status);
+               drm_err(&i915->drm, "%s: receive error (status 0x%08x)\n",
+                       intel_dp->aux.name, status);
                ret = -EIO;
                goto out;
        }
        /* Timeouts occur when the device isn't connected, so they're
         * "normal" -- don't fill the kernel log with these */
        if (status & DP_AUX_CH_CTL_TIME_OUT_ERROR) {
-               drm_dbg_kms(&i915->drm, "dp_aux_ch timeout status 0x%08x\n",
-                           status);
+               drm_dbg_kms(&i915->drm, "%s: timeout (status 0x%08x)\n",
+                           intel_dp->aux.name, status);
                ret = -ETIMEDOUT;
                goto out;
        }
         */
        if (recv_bytes == 0 || recv_bytes > 20) {
                drm_dbg_kms(&i915->drm,
-                           "Forbidden recv_bytes = %d on aux transaction\n",
-                           recv_bytes);
+                           "%s: Forbidden recv_bytes = %d on aux transaction\n",
+                           intel_dp->aux.name, recv_bytes);
                ret = -EBUSY;
                goto out;
        }