drm/i915/intel_i2c: cleanup error messages and comments
authorDaniel Kurtz <djkurtz@chromium.org>
Tue, 27 Mar 2012 18:36:11 +0000 (02:36 +0800)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Wed, 28 Mar 2012 07:44:44 +0000 (09:44 +0200)
Signed-off-by: Daniel Kurtz <djkurtz@chromium.org>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_i2c.c

index 30675ce..e6c090b 100644 (file)
@@ -333,17 +333,20 @@ done:
         * till then let it sleep.
         */
        if (wait_for((I915_READ(GMBUS2 + reg_offset) & GMBUS_ACTIVE) == 0, 10))
-               DRM_INFO("GMBUS timed out waiting for idle\n");
+               DRM_INFO("GMBUS [%s] timed out waiting for idle\n",
+                        bus->adapter.name);
        I915_WRITE(GMBUS0 + reg_offset, 0);
        ret = i;
        goto out;
 
 timeout:
-       DRM_INFO("GMBUS timed out, falling back to bit banging on pin %d [%s]\n",
-                bus->reg0 & 0xff, bus->adapter.name);
+       DRM_INFO("GMBUS [%s] timed out, falling back to bit banging on pin %d\n",
+                bus->adapter.name, bus->reg0 & 0xff);
        I915_WRITE(GMBUS0 + reg_offset, 0);
 
-       /* Hardware may not support GMBUS over these pins? Try GPIO bitbanging instead. */
+       /* Hardware may not support GMBUS over these pins?
+        * Try GPIO bitbanging instead.
+        */
        if (!bus->has_gpio) {
                ret = -EIO;
        } else {