X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Fsplash.h;h=33e45e6941632dcbc93c663d53de6d18426b41b7;hb=a29491ade0adf3dbb9dc51be8b45530edde1f1df;hp=228aff441b87f46c3747d5376773b559898ebea5;hpb=2c45f8040ea1152d2ff0960f96905ca42ac089cd;p=platform%2Fkernel%2Fu-boot.git diff --git a/include/splash.h b/include/splash.h index 228aff4..33e45e6 100644 --- a/include/splash.h +++ b/include/splash.h @@ -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; }