Lines Matching refs:__suffix
726 #define GPIO_DEVICE_INIT(__node, __suffix, __base_addr, __port, __cenr, __bus) \ argument
727 static const struct gpio_stm32_config gpio_stm32_cfg_## __suffix = { \
735 static struct gpio_stm32_data gpio_stm32_data_## __suffix; \
740 &gpio_stm32_data_## __suffix, \
741 &gpio_stm32_cfg_## __suffix, \
746 #define GPIO_DEVICE_INIT_STM32(__suffix, __SUFFIX) \ argument
747 GPIO_DEVICE_INIT(DT_NODELABEL(gpio##__suffix), \
748 __suffix, \
749 DT_REG_ADDR(DT_NODELABEL(gpio##__suffix)), \
751 DT_CLOCKS_CELL(DT_NODELABEL(gpio##__suffix), bits),\
752 DT_CLOCKS_CELL(DT_NODELABEL(gpio##__suffix), bus))
754 #define GPIO_DEVICE_INIT_STM32_IF_OKAY(__suffix, __SUFFIX) \ argument
755 COND_CODE_1(DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(gpio##__suffix)), \
756 (GPIO_DEVICE_INIT_STM32(__suffix, __SUFFIX)), \