Lines Matching defs:gpio
15 #include <linux/gpio/consumer.h>
921 struct gpio_desc *gpio;
923 gpio = devm_gpiod_get_optional(dev->dev, "scl", GPIOD_OUT_HIGH);
924 if (IS_ERR_OR_NULL(gpio))
925 return PTR_ERR_OR_ZERO(gpio);
927 rinfo->scl_gpiod = gpio;
929 gpio = devm_gpiod_get_optional(dev->dev, "sda", GPIOD_IN);
930 if (IS_ERR(gpio))
931 return PTR_ERR(gpio);
932 rinfo->sda_gpiod = gpio;
950 dev_info(dev->dev, "running with gpio recovery mode! scl%s",