From: Fabio Estevam <fabio.estevam@freescale.com>
Date: Sat, 15 Feb 2014 16:52:02 +0000 (-0200)
Subject: fb: Add a prototype for board_video_skip()
X-Git-Tag: v2025.01-rc5-pxa1908~15471
X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-logo.png?a=commitdiff_plain;h=335143c76612a0ae26eef8abeda77641d4f63b50;p=u-boot.git

fb: Add a prototype for board_video_skip()

Add a prototype for board_video_skip() in order to fix the following sparse
warning:

wandboard.c:227:5: warning: symbol 'board_video_skip' was not declared. Should it be static?

Cc: Anatolij Gustschin <agust@denx.de>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---

diff --git a/include/linux/fb.h b/include/linux/fb.h
index 111372c9fd..652cf3bab7 100644
--- a/include/linux/fb.h
+++ b/include/linux/fb.h
@@ -612,6 +612,8 @@ struct fb_videomode {
 	u32 flag;
 };
 
+int board_video_skip(void);
+
 #endif /* __KERNEL__ */
 
 #endif /* _LINUX_FB_H */