Lines Matching refs:otg
199 static int ulpi_set_host(struct usb_otg *otg, struct usb_bus *host) in ulpi_set_host() argument
201 struct usb_phy *phy = otg->usb_phy; in ulpi_set_host()
205 otg->host = NULL; in ulpi_set_host()
209 otg->host = host; in ulpi_set_host()
225 static int ulpi_set_vbus(struct usb_otg *otg, bool on) in ulpi_set_vbus() argument
227 struct usb_phy *phy = otg->usb_phy; in ulpi_set_vbus()
248 struct usb_otg *otg; in otg_ulpi_create() local
254 otg = kzalloc(sizeof(*otg), GFP_KERNEL); in otg_ulpi_create()
255 if (!otg) { in otg_ulpi_create()
263 phy->otg = otg; in otg_ulpi_create()
266 otg->usb_phy = phy; in otg_ulpi_create()
267 otg->set_host = ulpi_set_host; in otg_ulpi_create()
268 otg->set_vbus = ulpi_set_vbus; in otg_ulpi_create()