aboutsummaryrefslogtreecommitdiff
path: root/bbl
diff options
context:
space:
mode:
authorAndrew Waterman <andrew@sifive.com>2017-04-05 17:39:58 -0700
committerAndrew Waterman <andrew@sifive.com>2017-04-05 17:47:19 -0700
commitdce2b7dd8ede804f54f54fafabd82b24c1a0be62 (patch)
tree5a93701358ab2c5b900855f543179ee1330332cd /bbl
parent31eab7e4dd7856d48ee352fc941490257840a87c (diff)
downloadriscv-pk-dce2b7dd8ede804f54f54fafabd82b24c1a0be62.zip
riscv-pk-dce2b7dd8ede804f54f54fafabd82b24c1a0be62.tar.gz
riscv-pk-dce2b7dd8ede804f54f54fafabd82b24c1a0be62.tar.bz2
Rename HART_MASK to DISABLED_HART_MASK to clarify polarity
Diffstat (limited to 'bbl')
-rw-r--r--bbl/bbl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bbl/bbl.c b/bbl/bbl.c
index f64b2e7..5ee95ad 100644
--- a/bbl/bbl.c
+++ b/bbl/bbl.c
@@ -23,7 +23,7 @@ static void filter_dtb(uintptr_t source)
memcpy((void*)dest, (void*)source, size);
// Remove information from the chained FDT
- filter_harts(dest, HART_MASK);
+ filter_harts(dest, DISABLED_HART_MASK);
filter_plic(dest);
filter_compat(dest, "riscv,clint0");
filter_compat(dest, "riscv,debug-013");