浏览代码

Blackfin: fix if() logic in bootrom evt1 check

A missing set of parenthesis caused the silicon revision to apply only to
the BF533 and not the BF531/BF532 variants.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger 16 年之前
父节点
当前提交
2157359dad
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      include/asm-blackfin/blackfin-config-pre.h

+ 1 - 1
include/asm-blackfin/blackfin-config-pre.h

@@ -55,7 +55,7 @@ static inline const char *get_bfin_boot_mode(int bfin_boot)
 #endif
 
 /* Most bootroms allow for EVT1 redirection */
-#if (defined(__ADSPBF531__) || defined(__ADSPBF532__) || defined(__ADSPBF533__) \
+#if ((defined(__ADSPBF531__) || defined(__ADSPBF532__) || defined(__ADSPBF533__)) \
      && __SILICON_REVISION__ < 3) || defined(__ADSPBF561__)
 # undef CONFIG_BFIN_BOOTROM_USES_EVT1
 #else