mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 14:10:43 +00:00
lcd.h: define extern vidinfo_t for all cases
include/lcd.h has different vidinfo for different platforms, and several extern declaration, but one for the default case was missing. This makes them a single extern declaration for everyone. Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
This commit is contained in:
parent
bcf0b52489
commit
60e9741924
1 changed files with 2 additions and 6 deletions
|
@ -87,8 +87,6 @@ typedef struct vidinfo {
|
|||
u_char vl_wbf; /* Wait between frames */
|
||||
} vidinfo_t;
|
||||
|
||||
extern vidinfo_t panel_info;
|
||||
|
||||
#elif defined CONFIG_PXA250
|
||||
/*
|
||||
* PXA LCD DMA descriptor
|
||||
|
@ -158,8 +156,6 @@ typedef struct vidinfo {
|
|||
struct pxafb_info pxa;
|
||||
} vidinfo_t;
|
||||
|
||||
extern vidinfo_t panel_info;
|
||||
|
||||
#elif defined(CONFIG_ATMEL_LCD)
|
||||
|
||||
typedef struct vidinfo {
|
||||
|
@ -185,8 +181,6 @@ typedef struct vidinfo {
|
|||
u_long mmio; /* Memory mapped registers */
|
||||
} vidinfo_t;
|
||||
|
||||
extern vidinfo_t panel_info;
|
||||
|
||||
#else
|
||||
|
||||
typedef struct vidinfo {
|
||||
|
@ -202,6 +196,8 @@ typedef struct vidinfo {
|
|||
|
||||
#endif /* CONFIG_MPC823, CONFIG_PXA250 or CONFIG_MCC200 or CONFIG_ATMEL_LCD */
|
||||
|
||||
extern vidinfo_t panel_info;
|
||||
|
||||
/* Video functions */
|
||||
|
||||
#if defined(CONFIG_RBC823)
|
||||
|
|
Loading…
Reference in a new issue