video-uclass: Fix logical-not-parentheses warning
authorTom Rini <trini@konsulko.com>
Sun, 22 Apr 2018 13:47:48 +0000 (09:47 -0400)
committerAnatolij Gustschin <agust@denx.de>
Tue, 24 Apr 2018 18:57:14 +0000 (20:57 +0200)
With clang-4.0 and later we see:
warning: logical not is only applied to the left hand side of this bitwise
operator [-Wlogical-not-parentheses]
        if ((!gd->flags & GD_FLG_RELOC))
             ^          ~

And while the compiler suggests adding parenthesis around gd->flags, a
reading of the code says that we want to know when GD_FLG_RELOC is not
set and then return.

Cc: Simon Glass <sjg@chromium.org>
Cc: Anatolij Gustschin <agust@denx.de>
Signed-off-by: Tom Rini <trini@konsulko.com>
drivers/video/video-uclass.c

index b5bb8e0efde53bb82f196f46bfd978293b7b91ee..93fdc6828b1ea34d730658653c8f6f0dee7f1846 100644 (file)
@@ -272,7 +272,7 @@ static int video_post_bind(struct udevice *dev)
        ulong size;
 
        /* Before relocation there is nothing to do here */
-       if ((!gd->flags & GD_FLG_RELOC))
+       if (!(gd->flags & GD_FLG_RELOC))
                return 0;
        size = alloc_fb(dev, &addr);
        if (addr < gd->video_bottom) {