1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/gd32v: uart: fix function parameter

This commit is contained in:
Benjamin Valentin 2021-11-13 13:32:11 +01:00
parent 691601fbe2
commit 90a6d90df8

View File

@ -37,7 +37,7 @@ static struct {
uint8_t data_mask; /**< mask applied to the data register */
} isr_ctx[UART_NUMOF];
static inline void _uart_isr(uart_t uart);
static inline void _uart_isr(unsigned uart);
static inline USART_Type *dev(uart_t uart)
{