Skip to content

Commit

Permalink
drivers: serial: simplify Kconfig.nrfx by using HAS_HW_NRF_UART0
Browse files Browse the repository at this point in the history
Condition:
depends on ((SOC_SERIES_NRF52X || SOC_SERIES_NRF51X) && (!SOC_NRF52810))
for displaing configuration for UART0 peripheral has been replaced with:
depends on HAS_HW_NRF_UART0.

Signed-off-by: Jakub Rzeszutko <[email protected]>
  • Loading branch information
Jakub Rzeszutko authored and carlescufi committed Jun 19, 2018
1 parent eb84eff commit fab8246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/serial/Kconfig.nrfx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ choice

config UART_0_NRF_UART
bool "nRF UART 0"
depends on SOC_SERIES_NRF52X || SOC_SERIES_NRF51X
depends on HAS_HW_NRF_UART0
select NRF_UART_PERIPHERAL
help
Enable nRF UART without EasyDMA on port 0.
Expand Down

0 comments on commit fab8246

Please sign in to comment.