Home
last modified time | relevance | path

Searched refs:gpio_rst (Results 1 – 5 of 5) sorted by relevance

/linux/drivers/gpu/drm/bridge/ !
H A Dparade-ps8622.c50 struct gpio_desc *gpio_rst; member
347 gpiod_set_value(ps8622->gpio_rst, 0); in ps8622_pre_enable()
370 gpiod_set_value(ps8622->gpio_rst, 1); in ps8622_pre_enable()
415 gpiod_set_value(ps8622->gpio_rst, 0); in ps8622_post_disable()
481 ps8622->gpio_rst = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH); in ps8622_probe()
482 if (IS_ERR(ps8622->gpio_rst)) { in ps8622_probe()
483 ret = PTR_ERR(ps8622->gpio_rst); in ps8622_probe()
/linux/drivers/pci/controller/ !
H A Dpcie-mt7621.c85 struct gpio_desc *gpio_rst; member
163 if (port->gpio_rst) in mt7621_rst_gpio_pcie_assert()
164 gpiod_set_value(port->gpio_rst, 1); in mt7621_rst_gpio_pcie_assert()
169 if (port->gpio_rst) in mt7621_rst_gpio_pcie_deassert()
170 gpiod_set_value(port->gpio_rst, 0); in mt7621_rst_gpio_pcie_deassert()
236 port->gpio_rst = devm_gpiod_get_index_optional(dev, "reset", slot, in mt7621_pcie_parse_port()
238 if (IS_ERR(port->gpio_rst)) { in mt7621_pcie_parse_port()
240 err = PTR_ERR(port->gpio_rst); in mt7621_pcie_parse_port()
/linux/drivers/input/touchscreen/ !
H A Dzforce_ts.c111 struct gpio_desc *gpio_rst; member
665 gpiod_set_value_cansleep(ts->gpio_rst, 1); in zforce_reset()
691 ts->gpio_rst = devm_gpiod_get_optional(&client->dev, "reset", in zforce_probe()
693 error = PTR_ERR_OR_ZERO(ts->gpio_rst); in zforce_probe()
698 if (ts->gpio_rst) { in zforce_probe()
721 ts->gpio_rst = devm_gpiod_get_index(&client->dev, NULL, 1, in zforce_probe()
723 error = PTR_ERR_OR_ZERO(ts->gpio_rst); in zforce_probe()
799 gpiod_set_value_cansleep(ts->gpio_rst, 0); in zforce_probe()
H A Dauo-pixcir-ts.c117 struct gpio_desc *gpio_rst; member
482 gpiod_set_value_cansleep(ts->gpio_rst, 1); in auo_pixcir_reset()
559 ts->gpio_rst = devm_gpiod_get_index(&client->dev, NULL, 1, in auo_pixcir_probe()
561 error = PTR_ERR_OR_ZERO(ts->gpio_rst); in auo_pixcir_probe()
568 gpiod_set_consumer_name(ts->gpio_rst, "auo_pixcir_ts_rst"); in auo_pixcir_probe()
/linux/sound/soc/codecs/ !
H A Dpcm3168a.c61 struct gpio_desc *gpio_rst; member
739 pcm3168a->gpio_rst = devm_gpiod_get_optional(dev, "reset", in pcm3168a_probe()
742 if (IS_ERR(pcm3168a->gpio_rst)) in pcm3168a_probe()
743 return dev_err_probe(dev, PTR_ERR(pcm3168a->gpio_rst), in pcm3168a_probe()
786 if (pcm3168a->gpio_rst) { in pcm3168a_probe()
844 gpiod_set_value_cansleep(pcm3168a->gpio_rst, 1); in pcm3168a_remove()