Use longer string padding in intel_reg_dumper on ironlake
authorAdam Jackson <ajax@redhat.com>
Wed, 30 Jun 2010 15:18:00 +0000 (11:18 -0400)
committerAdam Jackson <ajax@redhat.com>
Wed, 30 Jun 2010 15:18:00 +0000 (11:18 -0400)
DIGITAL_PORT_HOTPLUG_CNTRL is 26 chars.  Bump out to 30.

Signed-off-by: Adam Jackson <ajax@redhat.com>
tools/intel_reg_dumper.c

index b4b317f..18d2d70 100644 (file)
@@ -1646,13 +1646,13 @@ ironlake_dump_regs(void)
                                                          [i].reg,
                                                          val);
                        if (debug != NULL) {
-                               printf("%20.20s: 0x%08x (%s)\n",
+                               printf("%30.30s: 0x%08x (%s)\n",
                                       ironlake_debug_regs[i].name,
                                       (unsigned int)val, debug);
                                free(debug);
                        }
                } else {
-                       printf("%20.20s: 0x%08x\n", ironlake_debug_regs[i].name,
+                       printf("%30.30s: 0x%08x\n", ironlake_debug_regs[i].name,
                               (unsigned int)val);
                }
        }