git: 185aa8c9c3d7 - main - arm: Update declarations for arm_dcache_align{,_mask}
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 02 Nov 2023 16:25:39 UTC
The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=185aa8c9c3d7a01d616cfaafd492f61b37ed2551 commit 185aa8c9c3d7a01d616cfaafd492f61b37ed2551 Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2023-11-02 16:23:51 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2023-11-02 16:25:31 +0000 arm: Update declarations for arm_dcache_align{,_mask} Reported by: Jenkins Fixes: 3d8f548b9e57 ("uma: Make the cache alignment mask unsigned") --- 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 */