git: dce3d3a8c077 - main - powerpc/loader: Size the CAS PVR array correctly

From: Justin Hibbits <jhibbits_at_FreeBSD.org>
Date: Sat, 17 Jan 2026 21:54:46 UTC
The branch main has been updated by jhibbits:

URL: https://cgit.FreeBSD.org/src/commit/?id=dce3d3a8c077433921b3d9560252c572dc182ba2

commit dce3d3a8c077433921b3d9560252c572dc182ba2
Author:     Justin Hibbits <jhibbits@FreeBSD.org>
AuthorDate: 2026-01-17 21:53:42 +0000
Commit:     Justin Hibbits <jhibbits@FreeBSD.org>
CommitDate: 2026-01-17 21:54:43 +0000

    powerpc/loader: Size the CAS PVR array correctly
    
    Fixes:          895eeb492 ("powerpc/loader: Add CAS support for older CPUs")
    MFC after:      1 week
---
 stand/powerpc/ofw/cas.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;