From 56b400f1a2aced332bd5264071ce0d73af37503a Mon Sep 17 00:00:00 2001 From: Soren Ptak Date: Wed, 3 Jan 2024 11:05:50 -0500 Subject: [PATCH] Change the parameters for prvMpuSetRegion() to follow the naming convention a bit more --- portable/GCC/ARM_CRx_MPU/portmacro.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/portable/GCC/ARM_CRx_MPU/portmacro.h b/portable/GCC/ARM_CRx_MPU/portmacro.h index 58d6bb351..af8cec650 100644 --- a/portable/GCC/ARM_CRx_MPU/portmacro.h +++ b/portable/GCC/ARM_CRx_MPU/portmacro.h @@ -420,10 +420,10 @@ void prvMpuDisable( void ); * are checked internally before it is called in the port.c file. */ void prvMpuSetRegion( - uint32_t regionNumber, - uint32_t baseAddress, - uint32_t regionSize, - uint32_t regionPermissions + uint32_t ulRegionNumber, + uint32_t ulBaseAddress, + uint32_t ulRegionSize, + uint32_t ulRegionPermissions ); /* ----------------------------- Port C Functions ----------------------------- */