summaryrefslogtreecommitdiff
path: root/include/splash.h
diff options
context:
space:
mode:
authorAnatolij Gustschin <agust@denx.de>2013-07-01 22:04:05 (GMT)
committerAnatolij Gustschin <agust@denx.de>2013-07-08 18:21:24 (GMT)
commitff8fb56b6f7edafc1bcba8ef008b3f368cabe60d (patch)
tree2db117f992892120bab9ab04b212700642adf0e7 /include/splash.h
parent327598945b13000065ca6ba3fe96c9bd45320999 (diff)
downloadu-boot-fsl-qoriq-ff8fb56b6f7edafc1bcba8ef008b3f368cabe60d.tar.xz
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.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/splash.h b/include/splash.h
index a8dd151..89ee7b2 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