Update tree with local changes. Disable WiLink4 drivers in the image and enable the...
[openpandora.oe.git] / recipes / linux / omap3-pandora-kernel / mru-fix-timings.diff
1 From: Mans Rullgard <mans@mansr.com>
2 Date: Fri, 29 Aug 2008 01:16:14 +0000 (+0100)
3 Subject: OMAP: Fix video timings info message
4 X-Git-Url: http://git.mansr.com/?p=linux-omap;a=commitdiff_plain;h=3a8bdf0967ae2c4eb3cebb97118ef0392f709c1c
5
6 OMAP: Fix video timings info message
7
8 This fixes the hsync frequency value printed on startup.
9
10 Signed-off-by: Mans Rullgard <mans@mansr.com>
11 ---
12
13 diff --git a/drivers/video/omap/omapfb_main.c b/drivers/video/omap/omapfb_main.c
14 index d176a2c..e7f3462 100644
15 --- a/drivers/video/omap/omapfb_main.c
16 +++ b/drivers/video/omap/omapfb_main.c
17 @@ -1792,7 +1792,8 @@ static int omapfb_do_probe(struct platform_device *pdev,
18                         vram, fbdev->mem_desc.region_cnt);
19         pr_info("omapfb: Pixclock %lu kHz hfreq %lu.%lu kHz "
20                         "vfreq %lu.%lu Hz\n",
21 -                       phz / 1000, hhz / 10000, hhz % 10, vhz / 10, vhz % 10);
22 +                       phz / 1000, hhz / 10000, hhz % 10000,
23 +                       vhz / 10, vhz % 10);
24  
25         return 0;
26