Lines Matching refs:otg
212 static int ulpi_set_host(struct usb_otg *otg, struct usb_bus *host) in ulpi_set_host() argument
214 struct usb_phy *phy = otg->usb_phy; in ulpi_set_host()
218 otg->host = NULL; in ulpi_set_host()
222 otg->host = host; in ulpi_set_host()
238 static int ulpi_set_vbus(struct usb_otg *otg, bool on) in ulpi_set_vbus() argument
240 struct usb_phy *phy = otg->usb_phy; in ulpi_set_vbus()
261 struct usb_otg *otg; in otg_ulpi_create() local
267 otg = kzalloc(sizeof(*otg), GFP_KERNEL); in otg_ulpi_create()
268 if (!otg) { in otg_ulpi_create()
276 phy->otg = otg; in otg_ulpi_create()
279 otg->usb_phy = phy; in otg_ulpi_create()
280 otg->set_host = ulpi_set_host; in otg_ulpi_create()
281 otg->set_vbus = ulpi_set_vbus; in otg_ulpi_create()