aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert ABEL <rabel@cit-ec.uni-bielefeld.de>2015-02-27 10:56:50 -0500
committerRoger Quadros <rogerq@ti.com>2015-03-06 05:23:21 -0500
commit2affc816df6163c063d47f722191aa3bc542c22a (patch)
tree3bec93a417d8fcc55a48bd27f31f4c6ecb44e114
parentb1dc1ca9d4673dac43b8a77a8b695ffb2918de2a (diff)
ARM OMAP2+ GPMC: fix debug output alignment
GPMC debug output is aligned to 10 characters for field names. However, some fields have bigger names, screwing up the alignment. Consequently, alignment was changed to longest field name (17 chars) for now. Signed-off-by: Robert ABEL <rabel@cit-ec.uni-bielefeld.de> Acked-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Roger Quadros <rogerq@ti.com>
-rw-r--r--drivers/memory/omap-gpmc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/memory/omap-gpmc.c b/drivers/memory/omap-gpmc.c
index 91b5a1b9b9c2..92898687181c 100644
--- a/drivers/memory/omap-gpmc.c
+++ b/drivers/memory/omap-gpmc.c
@@ -491,7 +491,7 @@ static int set_gpmc_timing_reg(int cs, int reg, int st_bit, int end_bit,
491 l = gpmc_cs_read_reg(cs, reg); 491 l = gpmc_cs_read_reg(cs, reg);
492#ifdef DEBUG 492#ifdef DEBUG
493 printk(KERN_INFO 493 printk(KERN_INFO
494 "GPMC CS%d: %-10s: %3d ticks, %3lu ns (was %3i ticks) %3d ns\n", 494 "GPMC CS%d: %-17s: %3d ticks, %3lu ns (was %3i ticks) %3d ns\n",
495 cs, name, ticks, gpmc_get_fclk_period() * ticks / 1000, 495 cs, name, ticks, gpmc_get_fclk_period() * ticks / 1000,
496 (l >> st_bit) & mask, time); 496 (l >> st_bit) & mask, time);
497#endif 497#endif