Lines Matching defs:gpiod
21 struct gpio_desc *gpiod;
28 struct gpio_desc *gpiod;
64 val = gpiod_get_value(pin->gpiod);
91 gpiod_set_value(pout->gpiod, bit ? 1 : 0);
141 pin->gpiod = devm_gpiod_get_index(dev, "in", x, GPIOD_IN);
142 if (IS_ERR(pin->gpiod)) {
144 return PTR_ERR(pin->gpiod);
173 pout->gpiod = devm_gpiod_get_index(dev, "out", x,
175 if (IS_ERR(pout->gpiod)) {
177 return PTR_ERR(pout->gpiod);
236 gpiod_set_value(pout->gpiod, val ? 1 : 0);
309 irq = gpiod_to_irq(pin->gpiod);