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>
This commit is contained in:
Adam Jackson 2010-06-30 11:18:00 -04:00
parent 439adf7a0a
commit be6e1a53fc

View File

@ -1646,13 +1646,13 @@ ironlake_dump_regs(void)
[i].reg, [i].reg,
val); val);
if (debug != NULL) { if (debug != NULL) {
printf("%20.20s: 0x%08x (%s)\n", printf("%30.30s: 0x%08x (%s)\n",
ironlake_debug_regs[i].name, ironlake_debug_regs[i].name,
(unsigned int)val, debug); (unsigned int)val, debug);
free(debug); free(debug);
} }
} else { } 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); (unsigned int)val);
} }
} }