Lines Matching defs:extcon
14 #include <linux/extcon.h>
25 struct extcon_dev *extcon;
90 struct extcon_dev *extcon;
94 if (!config || !config->extcon)
97 extcon = extcon_get_extcon_dev(config->extcon);
98 if (IS_ERR(extcon))
99 return PTR_ERR(extcon);
109 otg_dev->extcon = extcon;
113 ret = devm_extcon_register_notifier(&pdev->dev, extcon,
118 ret = devm_extcon_register_notifier(&pdev->dev, extcon,
124 otg_dev->id = extcon_get_state(extcon, EXTCON_USB_HOST);
125 otg_dev->vbus = extcon_get_state(extcon, EXTCON_USB);
132 (rev >> 4) & 0xf, rev & 0xf, config->extcon, otg_dev->id,