From: Mans Rullgard Date: Sat, 5 Jul 2008 20:31:56 +0000 (+0100) Subject: omapfb: fix video timings message X-Git-Tag: beagle-5~3 X-Git-Url: http://git.mansr.com/?p=linux-omap;a=commitdiff_plain;h=2929b75035ebe8702ba2ff2c81b654c487701f64 omapfb: fix video timings message --- diff --git a/drivers/video/omap/omapfb_main.c b/drivers/video/omap/omapfb_main.c index 418ed9f..1166a01 100644 --- a/drivers/video/omap/omapfb_main.c +++ b/drivers/video/omap/omapfb_main.c @@ -1789,7 +1789,8 @@ static int omapfb_do_probe(struct platform_device *pdev, vram, fbdev->mem_desc.region_cnt); pr_info("omapfb: Pixclock %lu kHz hfreq %lu.%lu kHz " "vfreq %lu.%lu Hz\n", - phz / 1000, hhz / 10000, hhz % 10, vhz / 10, vhz % 10); + phz / 1000, hhz / 10000, hhz % 10000, + vhz / 10, vhz % 10); return 0;