cmd: fitupd: move config check to Kconfig
[oweals/u-boot.git] / include / linux / fb.h
index 3858f8f80f6b6cc17ea62976a78d11578025bcf8..c820a4f77b4d068062bdefe353001082256d224d 100644 (file)
@@ -2,6 +2,7 @@
 #define _LINUX_FB_H
 
 #include <linux/types.h>
+#include <linux/list.h>
 
 /* Definitions of frame buffers                                                */
 
@@ -387,14 +388,14 @@ struct fb_cursor_user {
 #define FB_EVENT_GET_CONSOLE_MAP       0x07
 /*     CONSOLE-SPECIFIC: set console to framebuffer mapping */
 #define FB_EVENT_SET_CONSOLE_MAP       0x08
-/*     A hardware display blank change occured */
+/*     A hardware display blank change occurred */
 #define FB_EVENT_BLANK                 0x09
 /*     Private modelist is to be replaced */
 #define FB_EVENT_NEW_MODELIST          0x0A
 /*     The resolution of the passed in fb_info about to change and
        all vc's should be changed         */
 #define FB_EVENT_MODE_CHANGE_ALL       0x0B
-/*     A software display blank change occured */
+/*     A software display blank change occurred */
 #define FB_EVENT_CONBLANK              0x0C
 /*     Get drawing requirements        */
 #define FB_EVENT_GET_REQ               0x0D
@@ -536,7 +537,7 @@ struct fb_info {
 #define fb_writeq sbus_writeq
 #define fb_memset sbus_memset_io
 
-#elif defined(__i386__) || defined(__alpha__) || defined(__x86_64__) || defined(__hppa__) || defined(__sh__) || defined(__powerpc__) || defined(__avr32__) || defined(__bfin__)
+#elif defined(__i386__) || defined(__alpha__) || defined(__x86_64__) || defined(__hppa__) || defined(__sh__) || defined(__powerpc__) || defined(__bfin__)
 
 #define fb_readb __raw_readb
 #define fb_readw __raw_readw
@@ -611,6 +612,8 @@ struct fb_videomode {
        u32 flag;
 };
 
+int board_video_skip(void);
+
 #endif /* __KERNEL__ */
 
 #endif /* _LINUX_FB_H */