diff options
author | Koen Kooi <koen@openembedded.org> | 2009-03-19 11:32:06 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-03-19 11:32:06 +0100 |
commit | ebd561bc14a9a0883ad7c0ef2a6560ec9ae6824a (patch) | |
tree | 20eb796ad4af13c056223c9da31ecbf01e7dac79 /recipes/linux/linux-omap-pm-2.6.28/mru-fix-timings.diff | |
parent | 2612236bf6abf8ebd98fac5359f3b1b830404ed5 (diff) |
linux-omap-pm: add 2.6.28 recipe so git can move to .29rc
Diffstat (limited to 'recipes/linux/linux-omap-pm-2.6.28/mru-fix-timings.diff')
-rw-r--r-- | recipes/linux/linux-omap-pm-2.6.28/mru-fix-timings.diff | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/recipes/linux/linux-omap-pm-2.6.28/mru-fix-timings.diff b/recipes/linux/linux-omap-pm-2.6.28/mru-fix-timings.diff new file mode 100644 index 0000000000..37ca7d33ac --- /dev/null +++ b/recipes/linux/linux-omap-pm-2.6.28/mru-fix-timings.diff @@ -0,0 +1,26 @@ +From: Mans Rullgard <mans@mansr.com> +Date: Fri, 29 Aug 2008 01:16:14 +0000 (+0100) +Subject: OMAP: Fix video timings info message +X-Git-Url: http://git.mansr.com/?p=linux-omap;a=commitdiff_plain;h=3a8bdf0967ae2c4eb3cebb97118ef0392f709c1c + +OMAP: Fix video timings info message + +This fixes the hsync frequency value printed on startup. + +Signed-off-by: Mans Rullgard <mans@mansr.com> +--- + +diff --git a/drivers/video/omap/omapfb_main.c b/drivers/video/omap/omapfb_main.c +index d176a2c..e7f3462 100644 +--- a/drivers/video/omap/omapfb_main.c ++++ b/drivers/video/omap/omapfb_main.c +@@ -1792,7 +1792,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; + |