Skip to content

Commit

Permalink
ARM OMAP2+ GPMC: fix debug output alignment
Browse files Browse the repository at this point in the history
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 <[email protected]>
Acked-by: Tony Lindgren <[email protected]>
Signed-off-by: Roger Quadros <[email protected]>
  • Loading branch information
Robert ABEL authored and Roger Quadros committed Mar 6, 2015
1 parent b1dc1ca commit 2affc81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/memory/omap-gpmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ static int set_gpmc_timing_reg(int cs, int reg, int st_bit, int end_bit,
l = gpmc_cs_read_reg(cs, reg);
#ifdef DEBUG
printk(KERN_INFO
"GPMC CS%d: %-10s: %3d ticks, %3lu ns (was %3i ticks) %3d ns\n",
"GPMC CS%d: %-17s: %3d ticks, %3lu ns (was %3i ticks) %3d ns\n",
cs, name, ticks, gpmc_get_fclk_period() * ticks / 1000,
(l >> st_bit) & mask, time);
#endif
Expand Down

0 comments on commit 2affc81

Please sign in to comment.