Lines Matching refs:extcon
33 struct extcon_dev *extcon; member
98 struct extcon_dev *extcon; in omap_otg_probe() local
102 if (!config || !config->extcon) in omap_otg_probe()
105 extcon = extcon_get_extcon_dev(config->extcon); in omap_otg_probe()
106 if (!extcon) in omap_otg_probe()
117 otg_dev->extcon = extcon; in omap_otg_probe()
121 ret = extcon_register_notifier(extcon, EXTCON_USB_HOST, &otg_dev->id_nb); in omap_otg_probe()
125 ret = extcon_register_notifier(extcon, EXTCON_USB, &otg_dev->vbus_nb); in omap_otg_probe()
127 extcon_unregister_notifier(extcon, EXTCON_USB_HOST, in omap_otg_probe()
132 otg_dev->id = extcon_get_cable_state_(extcon, EXTCON_USB_HOST); in omap_otg_probe()
133 otg_dev->vbus = extcon_get_cable_state_(extcon, EXTCON_USB); in omap_otg_probe()
140 (rev >> 4) & 0xf, rev & 0xf, config->extcon, otg_dev->id, in omap_otg_probe()
149 struct extcon_dev *edev = otg_dev->extcon; in omap_otg_remove()