X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=include%2Fsplash.h;h=7ae7a686888c8e94b4051e38789ee3b48adce098;hb=d4a9b17df590c1b0b2a187e1491ea7e946a06a07;hp=a60e89542343532b2356d86f0215f30d53e228c6;hpb=f82eb2fa5df86b7180ea355a3cb98482f7c27269;p=oweals%2Fu-boot.git diff --git a/include/splash.h b/include/splash.h index a60e895423..7ae7a68688 100644 --- a/include/splash.h +++ b/include/splash.h @@ -22,6 +22,8 @@ #ifndef _SPLASH_H_ #define _SPLASH_H_ +#include + enum splash_storage { SPLASH_STORAGE_NAND, SPLASH_STORAGE_SF, @@ -42,6 +44,15 @@ void splash_get_pos(int *x, int *y); static inline void splash_get_pos(int *x, int *y) { } #endif +#if defined(CONFIG_SPLASH_SCREEN) && defined(CONFIG_LCD) +int lcd_splash(ulong addr); +#else +static inline int lcd_splash(ulong addr) +{ + return -ENOSYS; +} +#endif + #define BMP_ALIGN_CENTER 0x7FFF #endif