Lines Matching defs:extcon
12 #include <linux/extcon-provider.h>
111 struct extcon_dev *extcon;
147 extcon_set_state_sync(ch->extcon, EXTCON_USB_HOST, true);
148 extcon_set_state_sync(ch->extcon, EXTCON_USB, false);
150 extcon_set_state_sync(ch->extcon, EXTCON_USB_HOST, false);
151 extcon_set_state_sync(ch->extcon, EXTCON_USB, true);
679 channel->extcon = devm_extcon_dev_allocate(dev,
681 if (IS_ERR(channel->extcon))
682 return PTR_ERR(channel->extcon);
684 ret = devm_extcon_dev_register(dev, channel->extcon);
686 dev_err(dev, "Failed to register extcon\n");