Merge pull request #1101 from bthebaudeau/cc2538-make-uart_isr-static
cc2538: uart: Make uart_isr() static
This commit is contained in:
commit
06f7acfd5b
|
@ -359,7 +359,7 @@ uart_write_byte(uint8_t uart, uint8_t b)
|
||||||
REG(uart_base + UART_DR) = b;
|
REG(uart_base + UART_DR) = b;
|
||||||
}
|
}
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
void
|
static void
|
||||||
uart_isr(uint8_t uart)
|
uart_isr(uint8_t uart)
|
||||||
{
|
{
|
||||||
uint32_t uart_base;
|
uint32_t uart_base;
|
||||||
|
|
Loading…
Reference in a new issue