Skip to content

Commit

Permalink
cpu/esp32: internal uart int handler made static
Browse files Browse the repository at this point in the history
The interrupt handler is only used internally and declared to be static.
  • Loading branch information
gschorcht committed Mar 26, 2019
1 parent ef6f795 commit 901b177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpu/esp32/periph/uart.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ void uart_print_config(void)
}
}

void IRAM _uart_intr_handler (void *arg)
static void IRAM _uart_intr_handler (void *arg)
{
/* to satisfy the compiler */
(void)arg;
Expand Down

0 comments on commit 901b177

Please sign in to comment.