mips: octeon: cvmx-bootmem: Fix compare in "if" statement
authorStefan Roese <sr@denx.de>
Wed, 7 Apr 2021 07:12:28 +0000 (09:12 +0200)
committerStefan Roese <sr@denx.de>
Wed, 28 Apr 2021 08:05:12 +0000 (10:05 +0200)
While porting from the Marvell source, I introduced a bug by misplacing
the parenthesis. This patch fixes this issue.

Signed-off-by: Stefan Roese <sr@denx.de>
arch/mips/mach-octeon/cvmx-bootmem.c

index 4b10eff..12695df 100644 (file)
@@ -283,8 +283,8 @@ static int __cvmx_bootmem_check_version(int exact_match)
        int major_version;
 
        major_version = CVMX_BOOTMEM_DESC_GET_FIELD(major_version);
-       if (major_version > 3 ||
-           (exact_match && major_version) != exact_match) {
+       if ((major_version > 3) ||
+           (exact_match && major_version != exact_match)) {
                debug("ERROR: Incompatible bootmem descriptor version: %d.%d at addr: 0x%llx\n",
                      major_version,
                      (int)CVMX_BOOTMEM_DESC_GET_FIELD(minor_version),