]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PATCH] ARM: OMAP: Fix palmte lcd warnings
authorandrzej zaborowski <balrog@zabor.org>
Mon, 3 Apr 2006 19:23:36 +0000 (12:23 -0700)
committerTony Lindgren <tony@atomide.com>
Mon, 3 Apr 2006 19:23:36 +0000 (12:23 -0700)
Fix build warning from lcd panel source as noted by Komal Shah:

...
-c -o drivers/video/omap/lcd_palmte.o drivers/video/omap/lcd_palmte.c
drivers/video/omap/lcd_palmte.c:86: warning: initialization from
incompatible pointer type
drivers/video/omap/lcd_palmte.c:87: warning: initialization from
incompatible pointer type
drivers/video/omap/lcd_palmte.c:88: warning: initialization from
incompatible pointer type
drivers/video/omap/lcd_palmte.c:89: warning: initialization from
incompatible pointer type
drivers/video/omap/lcd_palmte.c:90: warning: initialization from
incompatible pointer type
....

drivers/video/omap/lcd_palmte.c

index 5cf3851f4e20b2a713ec9b90ddc83719270de021..edb802ffe5abe5fe8b63869f015609925470eaef 100644 (file)
 
 #include "debug.h"
 
-static int palmte_panel_init(struct lcd_panel *panel)
+static int palmte_panel_init(struct omapfb_device *panel)
 {
        DBGENTER(1);
        DBGLEAVE(1);
        return 0;
 }
 
-static void palmte_panel_cleanup(struct lcd_panel *panel)
+static void palmte_panel_cleanup(void)
 {
        DBGENTER(1);
        DBGLEAVE(1);
 }
 
-static int palmte_panel_enable(struct lcd_panel *panel)
+static int palmte_panel_enable(void)
 {
        DBGENTER(1);
        DBGLEAVE(1);
        return 0;
 }
 
-static void palmte_panel_disable(struct lcd_panel *panel)
+static void palmte_panel_disable(void)
 {
        DBGENTER(1);
        DBGLEAVE(1);
 }
 
-static unsigned long palmte_panel_get_caps(struct lcd_panel *panel)
+static unsigned long palmte_panel_get_caps(void)
 {
        return 0;
 }
@@ -138,4 +138,3 @@ static void palmte_panel_drv_cleanup(void)
 
 module_init(palmte_panel_drv_init);
 module_exit(palmte_panel_drv_cleanup);
-