From: andrzej zaborowski Date: Mon, 3 Apr 2006 19:23:36 +0000 (-0700) Subject: [PATCH] ARM: OMAP: Fix palmte lcd warnings X-Git-Tag: v2.6.16-omap1~2 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?p=linux-2.6-omap-h63xx.git;a=commitdiff_plain;h=8f67479316f3de4f2a8804e7ebc0dab45ffc042e [PATCH] ARM: OMAP: Fix palmte lcd warnings 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 .... --- diff --git a/drivers/video/omap/lcd_palmte.c b/drivers/video/omap/lcd_palmte.c index 5cf3851f4e2..edb802ffe5a 100644 --- a/drivers/video/omap/lcd_palmte.c +++ b/drivers/video/omap/lcd_palmte.c @@ -33,33 +33,33 @@ #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); -