diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2014-02-15 14:52:02 -0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2014-03-05 12:23:48 +0100 |
commit | 335143c76612a0ae26eef8abeda77641d4f63b50 (patch) | |
tree | d760c2548de13f8787936596cda2e2c1b14cfc23 /include/linux | |
parent | 67a9abe9145c56b2de8754e9781eef8db018dc27 (diff) | |
download | u-boot-imx-335143c76612a0ae26eef8abeda77641d4f63b50.zip u-boot-imx-335143c76612a0ae26eef8abeda77641d4f63b50.tar.gz u-boot-imx-335143c76612a0ae26eef8abeda77641d4f63b50.tar.bz2 |
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>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/fb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/fb.h b/include/linux/fb.h index 111372c..652cf3b 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 */ |