Merge pull request #1101 from bthebaudeau/cc2538-make-uart_isr-static

cc2538: uart: Make uart_isr() static
This commit is contained in:
George Oikonomou 2015-06-05 23:48:14 +01:00
commit 06f7acfd5b

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;