Lines Matching refs:vbus_gpiod
1469 value = gpiod_get_value(dev->vbus_gpiod); in s3c2410_udc_vbus_irq()
1802 udc->vbus_gpiod = gpiod_get_optional(dev, "vbus", GPIOD_IN); in s3c2410_udc_probe()
1803 if (IS_ERR(udc->vbus_gpiod)) { in s3c2410_udc_probe()
1804 retval = PTR_ERR(udc->vbus_gpiod); in s3c2410_udc_probe()
1807 if (udc->vbus_gpiod) { in s3c2410_udc_probe()
1808 gpiod_set_consumer_name(udc->vbus_gpiod, "udc vbus"); in s3c2410_udc_probe()
1810 irq = gpiod_to_irq(udc->vbus_gpiod); in s3c2410_udc_probe()
1854 if (udc->vbus_gpiod) in s3c2410_udc_probe()
1855 free_irq(gpiod_to_irq(udc->vbus_gpiod), udc); in s3c2410_udc_probe()
1886 if (udc->vbus_gpiod) in s3c2410_udc_remove()
1887 free_irq(gpiod_to_irq(udc->vbus_gpiod), udc); in s3c2410_udc_remove()