1. 26 4月, 2018 28 次提交
  2. 25 4月, 2018 2 次提交
    • T
      Merge git://git.denx.de/u-boot-video · 5512f5cc
      Tom Rini 提交于
      5512f5cc
    • T
      video-uclass: Fix logical-not-parentheses warning · 75164181
      Tom Rini 提交于
      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: NTom Rini <trini@konsulko.com>
      75164181
  3. 24 4月, 2018 10 次提交