zephyr: bulk update to DT_NODE_HAS_STATUS_OKAY

Change instances of:

DT_NODE_HAS_STATUS(<node_id>, okay)

to

DT_NODE_HAS_STATUS_OKAY(<node_id>)

Signed-off-by: Yong Cong Sin <ycsin@meta.com>
Signed-off-by: Yong Cong Sin <yongcong.sin@gmail.com>
This commit is contained in:
Yong Cong Sin 2024-09-20 12:47:40 +08:00 committed by Fabio Baltieri
commit 52a202309b
180 changed files with 743 additions and 738 deletions

View file

@ -317,7 +317,7 @@ static const struct uart_driver_api leuart_gecko_driver_api = {
#endif
};
#if DT_NODE_HAS_STATUS(DT_DRV_INST(0), okay)
#if DT_NODE_HAS_STATUS_OKAY(DT_DRV_INST(0))
#define PIN_LEUART_0_RXD {DT_INST_PROP_BY_IDX(0, location_rx, 1), \
DT_INST_PROP_BY_IDX(0, location_rx, 2), gpioModeInput, 1}
@ -368,9 +368,9 @@ static void leuart_gecko_config_func_0(const struct device *dev)
}
#endif
#endif /* DT_NODE_HAS_STATUS(DT_DRV_INST(0), okay) */
#endif /* DT_NODE_HAS_STATUS_OKAY(DT_DRV_INST(0)) */
#if DT_NODE_HAS_STATUS(DT_DRV_INST(1), okay)
#if DT_NODE_HAS_STATUS_OKAY(DT_DRV_INST(1))
#define PIN_LEUART_1_RXD {DT_INST_PROP_BY_IDX(1, location_rx, 1), \
DT_INST_PROP_BY_IDX(1, location_rx, 2), gpioModeInput, 1}
@ -421,4 +421,4 @@ static void leuart_gecko_config_func_1(const struct device *dev)
}
#endif
#endif /* DT_NODE_HAS_STATUS(DT_DRV_INST(1), okay) */
#endif /* DT_NODE_HAS_STATUS_OKAY(DT_DRV_INST(1)) */