lpc43: Use uint*_t instead of u*

This commit is contained in:
Ben Gamari
2013-06-30 17:59:22 -04:00
committed by Piotr Esden-Tempski
parent 26162762b7
commit 0d29b1d2d6
6 changed files with 165 additions and 165 deletions

View File

@@ -24,7 +24,7 @@
/* Set M0 in reset mode */
void ipc_halt_m0(void)
{
volatile u32 rst_active_status1;
volatile uint32_t rst_active_status1;
/* Check if M0 is reset by reading status */
rst_active_status1 = RESET_ACTIVE_STATUS1;
@@ -37,9 +37,9 @@ void ipc_halt_m0(void)
}
}
void ipc_start_m0(u32 cm0_baseaddr)
void ipc_start_m0(uint32_t cm0_baseaddr)
{
volatile u32 rst_active_status1;
volatile uint32_t rst_active_status1;
/* Set M0 memory mapping to point to start of M0 image */
CREG_M0APPMEMMAP = cm0_baseaddr;