summaryrefslogtreecommitdiff
path: root/tools/intel_reg_dumper.c
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2010-06-30 11:18:00 -0400
committerAdam Jackson <ajax@redhat.com>2010-06-30 11:18:00 -0400
commitbe6e1a53fc0fadedf24839e11d0bd2e0faca5126 (patch)
tree71add76072ec68db6fa7896c70125076a4343379 /tools/intel_reg_dumper.c
parent439adf7a0af2613e13bf1b29b02ab084b39f072c (diff)
Use longer string padding in intel_reg_dumper on ironlake
DIGITAL_PORT_HOTPLUG_CNTRL is 26 chars. Bump out to 30. Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'tools/intel_reg_dumper.c')
-rw-r--r--tools/intel_reg_dumper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/intel_reg_dumper.c b/tools/intel_reg_dumper.c
index b4b317f7..18d2d707 100644
--- a/tools/intel_reg_dumper.c
+++ b/tools/intel_reg_dumper.c
@@ -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);
}
}