Re: [U-Boot] [PATCH v2] splash: fix splash source flags check

2017-02-15 Thread Tomas Melin
Hi,


On 01/16/2017 08:36 PM, Michael Nazzareno Trimarchi wrote:
> Hi
> 
> 
> 
> On 14 Jan 2017 3:54 a.m., "Anatolij Gustschin"  wrote:
> 
> From: "tomas.me...@vaisala.com" 
> 
> 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 
> Reviewed-by: Tom Rini 
> ---
> 
> Changes in v2:
> - rebased on u-boot-video/master
> 
>  common/splash_source.c | 4 ++--
>  1 file 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)
> 
> 
> So switch
Yes, maybe indeed it makes sense to change to a switch case instead for these.
I will send a new patch.

Tomas

> 
> Michael
> 
> --
> 2.7.4
> 
> ___
> U-Boot mailing list
> U-Boot@lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
> ___
> U-Boot mailing list
> U-Boot@lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
> 
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v2] splash: fix splash source flags check

2017-01-16 Thread Michael Nazzareno Trimarchi
Hi



On 14 Jan 2017 3:54 a.m., "Anatolij Gustschin"  wrote:

From: "tomas.me...@vaisala.com" 

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 
Reviewed-by: Tom Rini 
---

Changes in v2:
- rebased on u-boot-video/master

 common/splash_source.c | 4 ++--
 1 file 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)


So switch

Michael

--
2.7.4

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v2] splash: fix splash source flags check

2017-01-16 Thread Anatolij Gustschin
On Fri, 13 Jan 2017 20:54:23 +0100
Anatolij Gustschin ag...@denx.de wrote:
... 
>  common/splash_source.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

applied to u-boot-video/master.

--
Anatolij
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH v2] splash: fix splash source flags check

2017-01-13 Thread Anatolij Gustschin
From: "tomas.me...@vaisala.com" 

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 
Reviewed-by: Tom Rini 
---

Changes in v2:
- rebased on u-boot-video/master

 common/splash_source.c | 4 ++--
 1 file 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)
-- 
2.7.4

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot