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:
Benoît Thébaudeau 2015-06-01 23:25:57 +02:00
parent 7caf588457
commit 0f137e4bdd

View file

@ -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;