Change the parameters for prvMpuSetRegion() to follow the naming convention a bit more

This commit is contained in:
Soren Ptak 2024-01-03 11:05:50 -05:00
parent a60fe75267
commit 56b400f1a2

View file

@ -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 ----------------------------- */