Lines Matching defs:extcon
12 #include <linux/extcon-provider.h>
108 struct extcon_dev *extcon;
137 extcon_set_state_sync(ch->extcon, EXTCON_USB_HOST, true);
138 extcon_set_state_sync(ch->extcon, EXTCON_USB, false);
140 extcon_set_state_sync(ch->extcon, EXTCON_USB_HOST, false);
141 extcon_set_state_sync(ch->extcon, EXTCON_USB, true);
639 channel->extcon = devm_extcon_dev_allocate(dev,
641 if (IS_ERR(channel->extcon))
642 return PTR_ERR(channel->extcon);
644 ret = devm_extcon_dev_register(dev, channel->extcon);
646 dev_err(dev, "Failed to register extcon\n");