summaryrefslogtreecommitdiff
path: root/common/splash_source.c
diff options
context:
space:
mode:
authortomas.melin@vaisala.com <tomas.melin@vaisala.com>2016-11-16 11:02:32 (GMT)
committerAnatolij Gustschin <agust@denx.de>2017-01-13 19:45:25 (GMT)
commit3b593f9030bae149af9261f51933805be506f6b1 (patch)
tree652a1b5592c78417939652454a6f5635ba259983 /common/splash_source.c
parentb4fc6f221474e2bc9f3e4af52556fd4ab5cbb9b9 (diff)
downloadu-boot-3b593f9030bae149af9261f51933805be506f6b1.tar.xz
splash: fix splash source flags check
SPLASH_STORAGE_RAW is defined as 0, so a check against & will never be true. These flags are never combined so do a check against == instead. Signed-off-by: Tomas Melin <tomas.melin@vaisala.com> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common/splash_source.c')
-rw-r--r--common/splash_source.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/splash_source.c b/common/splash_source.c
index 4c64f10..a5eeb3f 100644
--- a/common/splash_source.c
+++ b/common/splash_source.c
@@ -395,9 +395,9 @@ int splash_source_load(struct splash_location *locations, uint size)
if (!splash_location)
return -EINVAL;
- if (splash_location->flags & SPLASH_STORAGE_RAW)
+ if (splash_location->flags == SPLASH_STORAGE_RAW)
return splash_load_raw(splash_location, bmp_load_addr);
- else if (splash_location->flags & SPLASH_STORAGE_FS)
+ else if (splash_location->flags == SPLASH_STORAGE_FS)
return splash_load_fs(splash_location, bmp_load_addr);
#ifdef CONFIG_FIT
else if (splash_location->flags == SPLASH_STORAGE_FIT)