diff --git a/drivers/extcon/extcon.c b/drivers/extcon/extcon.c index 519ac5c8bed1..f21ab75fdbab 100644 --- a/drivers/extcon/extcon.c +++ b/drivers/extcon/extcon.c @@ -61,6 +61,11 @@ 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 9147c421fb05..dd1f925d0e01 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 */ #define EXTCON_CHG_USB_SDP 5 /* Standard Downstream Port */