From be6e1a53fc0fadedf24839e11d0bd2e0faca5126 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Wed, 30 Jun 2010 11:18:00 -0400 Subject: [PATCH] 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 --- tools/intel_reg_dumper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/intel_reg_dumper.c b/tools/intel_reg_dumper.c index b4b317f..18d2d70 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); } } -- 2.7.4