gpio: replace GPIO_DIR flags
GPIO_DIR_OUT is now GPIO_OUTPUT, similarly for GPIO_DIR_IN. Signed-off-by: Peter Bigot <peter.bigot@nordicsemi.no>
This commit is contained in:
parent
2befa6a251
commit
099614b30a
|
@ -62,16 +62,16 @@ static int pinmux_stm32_init(struct device *port)
|
|||
return -ENODEV;
|
||||
}
|
||||
|
||||
gpio_pin_configure(gpioa, 4, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(gpioa, 4, GPIO_OUTPUT);
|
||||
gpio_pin_set(gpioa, 4, 1);
|
||||
|
||||
gpio_pin_configure(gpiob, 6, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(gpiob, 6, GPIO_OUTPUT);
|
||||
gpio_pin_set(gpiob, 6, 1);
|
||||
|
||||
gpio_pin_configure(gpiob, 7, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(gpiob, 7, GPIO_OUTPUT);
|
||||
gpio_pin_set(gpiob, 7, 0);
|
||||
|
||||
gpio_pin_configure(gpioh, 1, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(gpioh, 1, GPIO_OUTPUT);
|
||||
gpio_pin_set(gpioh, 1, 1);
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -24,7 +24,7 @@ static int efm32gg_stk3701a_init(struct device *dev)
|
|||
return -ENODEV;
|
||||
}
|
||||
|
||||
gpio_pin_configure(cur_dev, BC_ENABLE_GPIO_PIN, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(cur_dev, BC_ENABLE_GPIO_PIN, GPIO_OUTPUT);
|
||||
gpio_pin_set(cur_dev, BC_ENABLE_GPIO_PIN, 1);
|
||||
|
||||
#ifdef CONFIG_ETH_GECKO
|
||||
|
@ -35,7 +35,7 @@ static int efm32gg_stk3701a_init(struct device *dev)
|
|||
return -ENODEV;
|
||||
}
|
||||
|
||||
gpio_pin_configure(cur_dev, ETH_PWR_ENABLE_GPIO_PIN, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(cur_dev, ETH_PWR_ENABLE_GPIO_PIN, GPIO_OUTPUT);
|
||||
gpio_pin_set(cur_dev, ETH_PWR_ENABLE_GPIO_PIN, 1);
|
||||
|
||||
/* Configure ethernet reference clock */
|
||||
|
@ -45,7 +45,7 @@ static int efm32gg_stk3701a_init(struct device *dev)
|
|||
return -ENODEV;
|
||||
}
|
||||
|
||||
gpio_pin_configure(cur_dev, ETH_REF_CLK_GPIO_PIN, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(cur_dev, ETH_REF_CLK_GPIO_PIN, GPIO_OUTPUT);
|
||||
gpio_pin_set(cur_dev, ETH_REF_CLK_GPIO_PIN, 0);
|
||||
|
||||
/* enable CMU_CLK2 as RMII reference clock */
|
||||
|
@ -61,7 +61,7 @@ static int efm32gg_stk3701a_init(struct device *dev)
|
|||
return -ENODEV;
|
||||
}
|
||||
|
||||
gpio_pin_configure(cur_dev, ETH_RESET_GPIO_PIN, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(cur_dev, ETH_RESET_GPIO_PIN, GPIO_OUTPUT);
|
||||
gpio_pin_set(cur_dev, ETH_RESET_GPIO_PIN, 1);
|
||||
#endif /* CONFIG_ETH_GECKO */
|
||||
|
||||
|
|
|
@ -114,20 +114,20 @@ static int rv32m1_vega_pinmux_init(struct device *dev)
|
|||
|
||||
struct device *gpio_dev = device_get_binding(DT_ALIAS_GPIO_B_LABEL);
|
||||
|
||||
gpio_pin_configure(gpio_dev, 29, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(gpio_dev, 29, GPIO_OUTPUT);
|
||||
|
||||
gpio_dev = device_get_binding(DT_ALIAS_GPIO_C_LABEL);
|
||||
gpio_pin_configure(gpio_dev, 28, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(gpio_dev, 29, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(gpio_dev, 30, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(gpio_dev, 28, GPIO_OUTPUT);
|
||||
gpio_pin_configure(gpio_dev, 29, GPIO_OUTPUT);
|
||||
gpio_pin_configure(gpio_dev, 30, GPIO_OUTPUT);
|
||||
|
||||
gpio_dev = device_get_binding(DT_ALIAS_GPIO_D_LABEL);
|
||||
gpio_pin_configure(gpio_dev, 0, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(gpio_dev, 1, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(gpio_dev, 2, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(gpio_dev, 3, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(gpio_dev, 4, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(gpio_dev, 5, GPIO_DIR_OUT);
|
||||
gpio_pin_configure(gpio_dev, 0, GPIO_OUTPUT);
|
||||
gpio_pin_configure(gpio_dev, 1, GPIO_OUTPUT);
|
||||
gpio_pin_configure(gpio_dev, 2, GPIO_OUTPUT);
|
||||
gpio_pin_configure(gpio_dev, 3, GPIO_OUTPUT);
|
||||
gpio_pin_configure(gpio_dev, 4, GPIO_OUTPUT);
|
||||
gpio_pin_configure(gpio_dev, 5, GPIO_OUTPUT);
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -49,7 +49,7 @@ static const struct args_number args_no = {
|
|||
static int cmd_gpio_conf(const struct shell *shell, size_t argc, char **argv)
|
||||
{
|
||||
u8_t index = 0U;
|
||||
int type = GPIO_DIR_OUT;
|
||||
int type = GPIO_OUTPUT;
|
||||
struct device *dev;
|
||||
|
||||
if (argc == args_no.conf &&
|
||||
|
@ -57,9 +57,9 @@ static int cmd_gpio_conf(const struct shell *shell, size_t argc, char **argv)
|
|||
isalpha((unsigned char)argv[args_indx.mode][0])) {
|
||||
index = (u8_t)atoi(argv[args_indx.index]);
|
||||
if (!strcmp(argv[args_indx.mode], "in")) {
|
||||
type = GPIO_DIR_IN;
|
||||
type = GPIO_INPUT;
|
||||
} else if (!strcmp(argv[args_indx.mode], "out")) {
|
||||
type = GPIO_DIR_OUT;
|
||||
type = GPIO_OUTPUT;
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue