cc2538: uart: Make uart_isr() static
This function is only supposed to be used by uart.c, so it should be static. Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau.dev@gmail.com>
This commit is contained in:
parent
7caf588457
commit
0f137e4bdd
1 changed files with 1 additions and 1 deletions
|
@ -359,7 +359,7 @@ uart_write_byte(uint8_t uart, uint8_t b)
|
|||
REG(uart_base + UART_DR) = b;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
void
|
||||
static void
|
||||
uart_isr(uint8_t uart)
|
||||
{
|
||||
uint32_t uart_base;
|
||||
|
|
Loading…
Reference in a new issue