rst_gpio          114 drivers/media/i2c/ov5645.c 	struct gpio_desc *rst_gpio;
rst_gpio          657 drivers/media/i2c/ov5645.c 	gpiod_set_value_cansleep(ov5645->rst_gpio, 0);
rst_gpio          666 drivers/media/i2c/ov5645.c 	gpiod_set_value_cansleep(ov5645->rst_gpio, 1);
rst_gpio         1130 drivers/media/i2c/ov5645.c 	ov5645->rst_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH);
rst_gpio         1131 drivers/media/i2c/ov5645.c 	if (IS_ERR(ov5645->rst_gpio)) {
rst_gpio         1133 drivers/media/i2c/ov5645.c 		return PTR_ERR(ov5645->rst_gpio);
rst_gpio          824 drivers/media/platform/sti/c8sectpfe/c8sectpfe-core.c 		tsin->rst_gpio = of_get_named_gpio(child, "reset-gpios", 0);
rst_gpio          826 drivers/media/platform/sti/c8sectpfe/c8sectpfe-core.c 		ret = gpio_is_valid(tsin->rst_gpio);
rst_gpio          830 drivers/media/platform/sti/c8sectpfe/c8sectpfe-core.c 				tsin->tsin_id, tsin->rst_gpio);
rst_gpio          834 drivers/media/platform/sti/c8sectpfe/c8sectpfe-core.c 		ret = devm_gpio_request_one(dev, tsin->rst_gpio,
rst_gpio          844 drivers/media/platform/sti/c8sectpfe/c8sectpfe-core.c 			gpio_direction_output(tsin->rst_gpio, 0);
rst_gpio          846 drivers/media/platform/sti/c8sectpfe/c8sectpfe-core.c 			gpio_direction_output(tsin->rst_gpio, 1);
rst_gpio           28 drivers/media/platform/sti/c8sectpfe/c8sectpfe-core.h 	int rst_gpio;
rst_gpio           32 drivers/usb/isp1760/isp1760-core.c 	if (isp->rst_gpio) {
rst_gpio           33 drivers/usb/isp1760/isp1760-core.c 		gpiod_set_value_cansleep(isp->rst_gpio, 1);
rst_gpio           35 drivers/usb/isp1760/isp1760-core.c 		gpiod_set_value_cansleep(isp->rst_gpio, 0);
rst_gpio          130 drivers/usb/isp1760/isp1760-core.c 	isp->rst_gpio = devm_gpiod_get_optional(dev, NULL, GPIOD_OUT_HIGH);
rst_gpio          131 drivers/usb/isp1760/isp1760-core.c 	if (IS_ERR(isp->rst_gpio))
rst_gpio          132 drivers/usb/isp1760/isp1760-core.c 		return PTR_ERR(isp->rst_gpio);
rst_gpio           43 drivers/usb/isp1760/isp1760-core.h 	struct gpio_desc *rst_gpio;
rst_gpio           44 include/linux/platform_data/cyttsp4.h 	int rst_gpio;