summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Hibbits <jhibbits@FreeBSD.org>2026-01-17 16:53:42 -0500
committerJustin Hibbits <jhibbits@FreeBSD.org>2026-01-17 16:54:43 -0500
commitdce3d3a8c077433921b3d9560252c572dc182ba2 (patch)
tree2a3b432636f61a52e478086c5b9c18aa097ca5c6
parent5d8777f3a7aee04eabbc9f3cf12138f9b56e3ebc (diff)
powerpc/loader: Size the CAS PVR array correctly
Fixes: 895eeb492 ("powerpc/loader: Add CAS support for older CPUs") MFC after: 1 week
-rw-r--r--stand/powerpc/ofw/cas.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stand/powerpc/ofw/cas.c b/stand/powerpc/ofw/cas.c
index af1497e98119..6a205924e37c 100644
--- a/stand/powerpc/ofw/cas.c
+++ b/stand/powerpc/ofw/cas.c
@@ -128,7 +128,7 @@ struct opt_vec5 {
} __packed;
static struct ibm_arch_vec {
- struct pvr pvr_list[10];
+ struct pvr pvr_list[13];
uint8_t num_opts;
struct opt_vec_ignore vec1;
struct opt_vec_ignore vec2;