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 ch

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 --- Chan

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.d

[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_so