From a69d462277e9829b8beef541bb777a4fbfc5eeb1 Mon Sep 17 00:00:00 2001 From: Dirk Behme Date: Tue, 1 May 2007 15:25:16 +0200 Subject: [PATCH] ARM: OMAP: Fix warning in lcdc.c Fix warning drivers/video/omap/lcdc.c:878: warning: initialization from incompatible pointer type Signed-off-by: Dirk Behme Signed-off-by: Tony Lindgren --- drivers/video/omap/lcdc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/video/omap/lcdc.c b/drivers/video/omap/lcdc.c index 0f868436a4f..197efe8b70b 100644 --- a/drivers/video/omap/lcdc.c +++ b/drivers/video/omap/lcdc.c @@ -611,9 +611,9 @@ static void omap_lcdc_resume(void) } } -static unsigned long omap_lcdc_get_caps(void) +static void omap_lcdc_get_caps(int plane, struct omapfb_caps *caps) { - return 0; + return; } int omap_lcdc_set_dma_callback(void (*callback)(void *data), void *data) -- 2.41.0