diff options
| author | Anatolij Gustschin <agust@denx.de> | 2013-07-02 00:04:05 +0200 | 
|---|---|---|
| committer | Anatolij Gustschin <agust@denx.de> | 2013-07-08 20:21:24 +0200 | 
| commit | ff8fb56b6f7edafc1bcba8ef008b3f368cabe60d (patch) | |
| tree | 2db117f992892120bab9ab04b212700642adf0e7 /include/splash.h | |
| parent | 327598945b13000065ca6ba3fe96c9bd45320999 (diff) | |
| download | olio-uboot-2014.01-ff8fb56b6f7edafc1bcba8ef008b3f368cabe60d.tar.xz olio-uboot-2014.01-ff8fb56b6f7edafc1bcba8ef008b3f368cabe60d.zip | |
video: consolidate splash screen alignment code
Code for checking "splashpos" environment variable is
duplicated in drivers, move it to the common function.
Call this function also in the bmp display command to
consider "splashpos" settings.
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'include/splash.h')
| -rw-r--r-- | include/splash.h | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/include/splash.h b/include/splash.h index a8dd151c7..89ee7b22e 100644 --- a/include/splash.h +++ b/include/splash.h @@ -25,5 +25,12 @@  int splash_screen_prepare(void); +#ifdef CONFIG_SPLASH_SCREEN_ALIGN +void splash_get_pos(int *x, int *y); +#else +static inline void splash_get_pos(int *x, int *y) { } +#endif + +#define BMP_ALIGN_CENTER	0x7FFF  #endif |