diff options
author | Koen Kooi <koen@openembedded.org> | 2009-03-24 13:41:51 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-03-24 13:41:51 +0100 |
commit | 20ad023c27df9817513e0a15d173901720288df6 (patch) | |
tree | fda2fce63da7e0453741b9a2ef622e2ce2cae167 /recipes/linux/linux-omap/mru-fix-timings.diff | |
parent | b4b4c8664e53f15a436e17151c7c8cef33b766cd (diff) |
linux-omap: add recipe for 2.6.29 and update git version to that as well
Diffstat (limited to 'recipes/linux/linux-omap/mru-fix-timings.diff')
-rw-r--r-- | recipes/linux/linux-omap/mru-fix-timings.diff | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/recipes/linux/linux-omap/mru-fix-timings.diff b/recipes/linux/linux-omap/mru-fix-timings.diff deleted file mode 100644 index 37ca7d33ac..0000000000 --- a/recipes/linux/linux-omap/mru-fix-timings.diff +++ /dev/null @@ -1,26 +0,0 @@ -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; - |