Skip to content

Commit

Permalink
drivers: serial: Update more DTS-derived labels with DT_ prefix
Browse files Browse the repository at this point in the history
This is a follow-up to commit b3ca789.
Apparently, another driver needed to be updated but this was not caught
up in CI builds at that time.

Signed-off-by: Andrzej Głąbek <[email protected]>
  • Loading branch information
anangl authored and galak committed Nov 21, 2018
1 parent 3984361 commit f467575
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/serial/uart_msp432p4xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,11 @@ static int uart_msp432p4xx_init(struct device *dev)
MAP_UART_enableModule((unsigned long)config->base);

#ifdef CONFIG_UART_INTERRUPT_DRIVEN
IRQ_CONNECT(TI_MSP432P4XX_UART_40001000_IRQ_0,
TI_MSP432P4XX_UART_40001000_IRQ_0_PRIORITY,
IRQ_CONNECT(DT_TI_MSP432P4XX_UART_40001000_IRQ_0,
DT_TI_MSP432P4XX_UART_40001000_IRQ_0_PRIORITY,
uart_msp432p4xx_isr, DEVICE_GET(uart_msp432p4xx_0),
0);
irq_enable(TI_MSP432P4XX_UART_40001000_IRQ_0);
irq_enable(DT_TI_MSP432P4XX_UART_40001000_IRQ_0);

#endif
return 0;
Expand Down

0 comments on commit f467575

Please sign in to comment.