Lines Matching refs:reset
27 struct gpio_desc *reset;
38 /* put the device in reset */
39 gpiod_set_value_cansleep(priv->reset, 0);
45 /* take the device out of reset - datasheet does not specify a delay */
46 gpiod_set_value_cansleep(priv->reset, 1);
271 priv->reset = devm_gpiod_get_optional(dev, "reset", GPIOD_OUT_LOW);
272 if (IS_ERR(priv->reset))
273 return dev_err_probe(dev, PTR_ERR(priv->reset),
274 "Failed to get 'reset' gpio");