drivers: modem: WNCM14A2A select UART_INTERRUPT_DRIVEN
Modem driver for WNCM14A2A was erroneously leaving the selection of UART_INTERRUPT_DRIVEN up to CONSOLE_HANDLER. Now, with the move to the new SHELL backend, this is no longer happening. Let's select it from the modem driver, instead of depending on it. Let's also add a dependency on SERIAL_SUPPORT_INTERRUPT which the serial drivers enable to let us know UART_INTERRUPT_DRIVEN is available. Signed-off-by: Michael Scott <mike@foundries.io>
This commit is contained in:
parent
27a237f66f
commit
39843617cb
1 changed files with 2 additions and 1 deletions
|
@ -41,7 +41,8 @@ config MODEM_SHELL
|
||||||
|
|
||||||
config MODEM_WNCM14A2A
|
config MODEM_WNCM14A2A
|
||||||
bool "Enable Wistron LTE-M modem driver"
|
bool "Enable Wistron LTE-M modem driver"
|
||||||
depends on UART_INTERRUPT_DRIVEN
|
depends on SERIAL_SUPPORT_INTERRUPT
|
||||||
|
select UART_INTERRUPT_DRIVEN
|
||||||
select MODEM_RECEIVER
|
select MODEM_RECEIVER
|
||||||
select NET_OFFLOAD
|
select NET_OFFLOAD
|
||||||
select UART_MCUX_2 if BOARD_FRDM_K64F
|
select UART_MCUX_2 if BOARD_FRDM_K64F
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue