Lines Matching refs:otg
609 static int twl4030_set_peripheral(struct usb_otg *otg, in twl4030_set_peripheral() argument
612 if (!otg) in twl4030_set_peripheral()
615 otg->gadget = gadget; in twl4030_set_peripheral()
617 otg->state = OTG_STATE_UNDEFINED; in twl4030_set_peripheral()
622 static int twl4030_set_host(struct usb_otg *otg, struct usb_bus *host) in twl4030_set_host() argument
624 if (!otg) in twl4030_set_host()
627 otg->host = host; in twl4030_set_host()
629 otg->state = OTG_STATE_UNDEFINED; in twl4030_set_host()
652 struct usb_otg *otg; in twl4030_usb_probe() local
670 otg = devm_kzalloc(&pdev->dev, sizeof(*otg), GFP_KERNEL); in twl4030_usb_probe()
671 if (!otg) in twl4030_usb_probe()
681 twl->phy.otg = otg; in twl4030_usb_probe()
684 otg->usb_phy = &twl->phy; in twl4030_usb_probe()
685 otg->set_host = twl4030_set_host; in twl4030_usb_probe()
686 otg->set_peripheral = twl4030_set_peripheral; in twl4030_usb_probe()