> As observed with clang:
> fs/fat/fat_write.c:1024:13: warning: comparison of constant 128
>       with expression of type 'char' is always false
>       [-Wtautological-constant-out-of-range-compare]
>                 if ((0x80 <= c) && (c <= 0xff))
>                      ~~~~ ^  ~
> fs/fat/fat_write.c:1024:25: warning: comparison of constant 255
>       with expression of type 'char' is always true
>       [-Wtautological-constant-out-of-range-compare]
>                 if ((0x80 <= c) && (c <= 0xff))
>                                     ~ ^  ~~~~
> 
> Fixes: 25bb9dab14f4 ("fs: fat: check and normalize file name")
> Cc: AKASHI Takahiro <takahiro.aka...@linaro.org>
> Cc: Alexander Graf <ag...@suse.de>
> Signed-off-by: Tom Rini <tr...@konsulko.com>

Thanks, applied to efi-2018.11

Alex

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot

Reply via email to