]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
ARM: OMAP: Fix missing channel parameter in omapfb_main.c
authorDirk Behme <dirk.behme@googlemail.com>
Fri, 4 Aug 2006 10:41:22 +0000 (13:41 +0300)
committerTony Lindgren <tony@atomide.com>
Fri, 4 Aug 2006 10:41:22 +0000 (13:41 +0300)
Fix missing channel parameter using omap_set_dma_priority() in omapfb_main.c:
drivers/video/omap/omapfb_main.c: In function 'omapfb_do_probe':
drivers/video/omap/omapfb_main.c:1441: error: too few
arguments to function
         'omap_set_dma_priority'

Signed-off-by: Dirk Behme <dirk.behme_at_gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
drivers/video/omap/omapfb_main.c

index 4e73cd49be6300f813b41a2ac1910e443a66016b..b4236765bdb514a3fd71c37cf8a1c3a87a5639f7 100644 (file)
@@ -1438,7 +1438,7 @@ static int omapfb_do_probe(struct platform_device *pdev, struct lcd_panel *panel
 #ifdef CONFIG_FB_OMAP_DMA_TUNE
        /* Set DMA priority for EMIFF access to highest */
        if (cpu_class_is_omap1())
-               omap_set_dma_priority(OMAP_DMA_PORT_EMIFF, 15);
+               omap_set_dma_priority(0, OMAP_DMA_PORT_EMIFF, 15);
 #endif
 
        r = ctrl_change_mode(fbdev->fb_info[0]);