The branch stable/14 has been updated by markj:

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

commit 7cb0bacf53f2507394d8aa1fc3abbe3ca02f61cd
Author:     Mark Johnston <[email protected]>
AuthorDate: 2023-11-02 16:23:51 +0000
Commit:     Mark Johnston <[email protected]>
CommitDate: 2023-11-16 15:07:27 +0000

    arm: Update declarations for arm_dcache_align{,_mask}
    
    Reported by:    Jenkins
    Fixes:          3d8f548b9e57 ("uma: Make the cache alignment mask unsigned")
    
    (cherry picked from commit 185aa8c9c3d7a01d616cfaafd492f61b37ed2551)
---
 sys/arm/include/cpufunc.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/arm/include/cpufunc.h b/sys/arm/include/cpufunc.h
index 0b54b59a7711..6562042dac0c 100644
--- a/sys/arm/include/cpufunc.h
+++ b/sys/arm/include/cpufunc.h
@@ -178,8 +178,8 @@ void cpu_reset              (void) 
__attribute__((__noreturn__));
  */
 
 /* PRIMARY CACHE VARIABLES */
-extern int     arm_dcache_align;
-extern int     arm_dcache_align_mask;
+extern unsigned int    arm_dcache_align;
+extern unsigned int    arm_dcache_align_mask;
 
 #else  /* !_KERNEL */
 

Reply via email to