Searched refs:standby_gpio (Results 1 - 5 of 5) sorted by relevance

/linux-master/drivers/phy/
H A Dphy-can-transceiver.c24 struct gpio_desc *standby_gpio; member in struct:can_transceiver_phy
42 if (can_transceiver_phy->standby_gpio)
43 gpiod_set_value_cansleep(can_transceiver_phy->standby_gpio, 0);
55 if (can_transceiver_phy->standby_gpio)
56 gpiod_set_value_cansleep(can_transceiver_phy->standby_gpio, 1);
104 struct gpio_desc *standby_gpio; local
141 standby_gpio = devm_gpiod_get_optional(dev, "standby", GPIOD_OUT_HIGH);
142 if (IS_ERR(standby_gpio))
143 return PTR_ERR(standby_gpio);
144 can_transceiver_phy->standby_gpio
[all...]
/linux-master/sound/soc/codecs/
H A Dtas6424.c47 struct gpio_desc *standby_gpio; member in struct:tas6424_data
710 tas6424->standby_gpio = devm_gpiod_get_optional(dev, "standby",
712 if (IS_ERR(tas6424->standby_gpio)) {
713 if (PTR_ERR(tas6424->standby_gpio) == -EPROBE_DEFER)
716 PTR_ERR(tas6424->standby_gpio));
717 tas6424->standby_gpio = NULL;
785 if (tas6424->standby_gpio)
786 gpiod_set_value_cansleep(tas6424->standby_gpio, 1);
/linux-master/drivers/media/i2c/
H A Dmt9t112.c96 struct gpio_desc *standby_gpio; member in struct:mt9t112_priv
755 if (priv->standby_gpio) {
756 gpiod_set_value(priv->standby_gpio, 0);
766 if (priv->standby_gpio) {
767 gpiod_set_value(priv->standby_gpio, 1);
1089 priv->standby_gpio = devm_gpiod_get_optional(&client->dev, "standby",
1091 if (IS_ERR(priv->standby_gpio)) {
1093 return PTR_ERR(priv->standby_gpio);
H A Dmt9m001.c99 struct gpio_desc *standby_gpio; member in struct:mt9m001
455 if (mt9m001->standby_gpio) {
456 gpiod_set_value_cansleep(mt9m001->standby_gpio, 0);
475 gpiod_set_value_cansleep(mt9m001->standby_gpio, 1);
750 mt9m001->standby_gpio = devm_gpiod_get_optional(&client->dev, "standby",
752 if (IS_ERR(mt9m001->standby_gpio))
753 return PTR_ERR(mt9m001->standby_gpio);
H A Dmt9v032.c206 struct gpio_desc *standby_gpio; member in struct:mt9v032
1070 mt9v032->standby_gpio = devm_gpiod_get_optional(&client->dev, "standby",
1072 if (IS_ERR(mt9v032->standby_gpio))
1073 return PTR_ERR(mt9v032->standby_gpio);

Completed in 206 milliseconds