From e274d3ef37661ad3619833dada9ee24776edef64 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 19 Jun 2019 12:40:39 -0700 Subject: [PATCH] sept: tweak cluster verif --- sept/sept-secondary/src/cluster.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sept/sept-secondary/src/cluster.c b/sept/sept-secondary/src/cluster.c index 4864ef38d..1ea65a699 100644 --- a/sept/sept-secondary/src/cluster.c +++ b/sept/sept-secondary/src/cluster.c @@ -156,7 +156,8 @@ void cluster_boot_cpu0(uint32_t entry) generic_panic(); } - if (SB_AA64_RESET_LOW_0 != (entry | 1) || SB_AA64_RESET_HIGH_0 != 0) { + /* TODO: Should we even bother taking as a parameter? */ + if (SB_AA64_RESET_LOW_0 != (0x4003D000 | 1) || SB_AA64_RESET_HIGH_0 != 0) { generic_panic(); }