diff --git a/drivers/extcon/extcon.c b/drivers/extcon/extcon.c index b9d27c8fe57e..6a75f06d8f0c 100644 --- a/drivers/extcon/extcon.c +++ b/drivers/extcon/extcon.c @@ -59,6 +59,11 @@ static const struct __extcon_info { .id = EXTCON_USB_HOST, .name = "USB-HOST", }, + [EXTCON_USB_VBUS_EN] = { + .type = EXTCON_TYPE_USB, + .id = EXTCON_USB_VBUS_EN, + .name = "USB_VBUS_EN", + }, /* Charging external connector */ [EXTCON_CHG_USB_SDP] = { diff --git a/include/linux/extcon.h b/include/linux/extcon.h index 7f033b1ea568..299ef08ac5cf 100644 --- a/include/linux/extcon.h +++ b/include/linux/extcon.h @@ -45,6 +45,7 @@ /* USB external connector */ #define EXTCON_USB 1 #define EXTCON_USB_HOST 2 +#define EXTCON_USB_VBUS_EN 3 /* * Charging external connector