Lines Matching defs:dout
19 struct gpio_desc *dout;
37 gpiod_set_value_cansleep(ddata->dout, 0);
57 gpiod_set_value_cansleep(ddata->dout, !(set & 0x80));
76 * Resetting dout isn't necessary protocol wise, but it makes the
77 * signals more pretty because the dout level is deterministic between
78 * cycles. Note that this only affects dout between the master and the
79 * first siox device. dout for the later devices depend on the output of
82 gpiod_set_value_cansleep(ddata->dout, 0);
110 ddata->dout = devm_gpiod_get(dev, "dout", GPIOD_OUT_LOW);
111 if (IS_ERR(ddata->dout)) {
112 ret = PTR_ERR(ddata->dout);
113 dev_err(dev, "Failed to get %s GPIO: %d\n", "dout", ret);