MIPS: convert CONFIG_SYS_MIPS_TIMER_FREQ to Kconfig
[platform/kernel/u-boot.git] / include / splash.h
index 228aff4..33e45e6 100644 (file)
@@ -30,6 +30,7 @@ enum splash_storage {
        SPLASH_STORAGE_MMC,
        SPLASH_STORAGE_USB,
        SPLASH_STORAGE_SATA,
+       SPLASH_STORAGE_VIRTIO,
 };
 
 enum splash_flags {
@@ -66,10 +67,10 @@ 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);
+#if defined(CONFIG_SPLASH_SCREEN) && defined(CONFIG_CMD_BMP)
+int splash_display(void);
 #else
-static inline int lcd_splash(ulong addr)
+static inline int splash_display(void)
 {
        return -ENOSYS;
 }