Home
last modified time | relevance | path

Searched refs:gpiod_reset (Results 1 – 9 of 9) sorted by relevance

/drivers/usb/phy/
A Dphy-generic.c68 if (!nop->gpiod_reset) in nop_reset()
71 gpiod_set_value_cansleep(nop->gpiod_reset, 1); in nop_reset()
73 gpiod_set_value_cansleep(nop->gpiod_reset, 0); in nop_reset()
156 gpiod_set_value_cansleep(nop->gpiod_reset, 1); in usb_gen_phy_shutdown()
217 nop->gpiod_reset = devm_gpiod_get_optional(dev, "reset", in usb_phy_gen_create_phy()
219 err = PTR_ERR_OR_ZERO(nop->gpiod_reset); in usb_phy_gen_create_phy()
230 if (nop->gpiod_reset) in usb_phy_gen_create_phy()
231 gpiod_direction_output(nop->gpiod_reset, 1); in usb_phy_gen_create_phy()
A Dphy-generic.h14 struct gpio_desc *gpiod_reset; member
/drivers/nfc/st-nci/
A Dspi.c39 struct gpio_desc *gpiod_reset; member
48 gpiod_set_value(phy->gpiod_reset, 0); in st_nci_spi_enable()
50 gpiod_set_value(phy->gpiod_reset, 1); in st_nci_spi_enable()
236 phy->gpiod_reset = devm_gpiod_get(&dev->dev, "reset", GPIOD_OUT_HIGH); in st_nci_spi_probe()
237 if (IS_ERR(phy->gpiod_reset)) { in st_nci_spi_probe()
239 return PTR_ERR(phy->gpiod_reset); in st_nci_spi_probe()
A Di2c.c38 struct gpio_desc *gpiod_reset; member
47 gpiod_set_value(phy->gpiod_reset, 0); in st_nci_i2c_enable()
49 gpiod_set_value(phy->gpiod_reset, 1); in st_nci_i2c_enable()
222 phy->gpiod_reset = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH); in st_nci_i2c_probe()
223 if (IS_ERR(phy->gpiod_reset)) { in st_nci_i2c_probe()
/drivers/iio/pressure/
A Dmprls0025pa.c174 if (data->gpiod_reset) { in mpr_reset()
175 gpiod_set_value(data->gpiod_reset, 0); in mpr_reset()
177 gpiod_set_value(data->gpiod_reset, 1); in mpr_reset()
430 data->gpiod_reset = devm_gpiod_get_optional(dev, "reset", in mpr_common_probe()
432 if (IS_ERR(data->gpiod_reset)) in mpr_common_probe()
433 return dev_err_probe(dev, PTR_ERR(data->gpiod_reset), in mpr_common_probe()
A Dmprls0025pa.h79 struct gpio_desc *gpiod_reset; member
/drivers/gpu/drm/bridge/analogix/
A Danalogix-anx6345.c55 struct gpio_desc *gpiod_reset; member
280 gpiod_set_value_cansleep(anx6345->gpiod_reset, 1); in anx6345_poweron()
305 gpiod_set_value_cansleep(anx6345->gpiod_reset, 0); in anx6345_poweron()
323 gpiod_set_value_cansleep(anx6345->gpiod_reset, 1); in anx6345_poweroff()
708 anx6345->gpiod_reset = devm_gpiod_get(dev, "reset", GPIOD_OUT_LOW); in anx6345_i2c_probe()
709 if (IS_ERR(anx6345->gpiod_reset)) { in anx6345_i2c_probe()
711 return PTR_ERR(anx6345->gpiod_reset); in anx6345_i2c_probe()
A Danalogix-anx78xx.c60 struct gpio_desc *gpiod_reset; member
486 gpiod_set_value_cansleep(pdata->gpiod_reset, 1); in anx78xx_poweron()
492 gpiod_set_value_cansleep(pdata->gpiod_reset, 0); in anx78xx_poweron()
511 gpiod_set_value_cansleep(pdata->gpiod_reset, 1); in anx78xx_poweroff()
599 pdata->gpiod_reset = devm_gpiod_get(dev, "reset", GPIOD_OUT_LOW); in anx78xx_init_pdata()
601 return PTR_ERR_OR_ZERO(pdata->gpiod_reset); in anx78xx_init_pdata()
/drivers/gpu/drm/bridge/
A Dite-it6505.c374 struct gpio_desc *gpiod_reset; member
2802 if (pdata->gpiod_reset) { in it6505_poweron()
2804 gpiod_set_value_cansleep(pdata->gpiod_reset, 1); in it6505_poweron()
2806 gpiod_set_value_cansleep(pdata->gpiod_reset, 0); in it6505_poweron()
2836 if (pdata->gpiod_reset) in it6505_poweroff()
2837 gpiod_set_value_cansleep(pdata->gpiod_reset, 1); in it6505_poweroff()
3322 pdata->gpiod_reset = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH); in it6505_init_pdata()
3323 if (IS_ERR(pdata->gpiod_reset)) { in it6505_init_pdata()
3325 return PTR_ERR(pdata->gpiod_reset); in it6505_init_pdata()

Completed in 22 milliseconds