Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mx3fb: Fix print format string

%ul was probably meant as %lu since the former would print
an unsigned value and a letter l.

But in fact the whole value we are printing in u32 anyway, so
we don't need the format to be long. Therefore just drop the l
altogether.

Signed-off-by: Oleg Drokin <green@linuxhacker.ru>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>

authored by

Oleg Drokin and committed by
Tomi Valkeinen
b86acbef ffe439d6

+1 -1
+1 -1
drivers/video/fbdev/mx3fb.c
··· 845 845 if (fbi->var.sync & FB_SYNC_SHARP_MODE) 846 846 mode = IPU_PANEL_SHARP_TFT; 847 847 848 - dev_dbg(fbi->device, "pixclock = %ul Hz\n", 848 + dev_dbg(fbi->device, "pixclock = %u Hz\n", 849 849 (u32) (PICOS2KHZ(fbi->var.pixclock) * 1000UL)); 850 850 851 851 if (sdc_init_panel(mx3fb, mode,