From mboxrd@z Thu Jan 1 00:00:00 1970 From: Li Jun Subject: [PATCH v2 01/22] usb: add OTG version number in usb_otg_descriptor Date: Mon, 8 Jun 2015 23:01:56 +0800 Message-ID: <1433775737-9816-2-git-send-email-jun.li@freescale.com> References: <1433775737-9816-1-git-send-email-jun.li@freescale.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: In-Reply-To: <1433775737-9816-1-git-send-email-jun.li-KZfg59tc24xl57MIdRCFDg@public.gmane.org> Sender: linux-usb-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org, balbi-l0cyMroinI0@public.gmane.org, peter.chen-KZfg59tc24xl57MIdRCFDg@public.gmane.org Cc: linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org, pawel.moll-5wv7dgnIgG8@public.gmane.org, mark.rutland-5wv7dgnIgG8@public.gmane.org, macpaul-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org, rogerq-l0cyMroinI0@public.gmane.org, Li Jun List-Id: devicetree@vger.kernel.org From: Macpaul Lin OTG 2.0 introduces bcdOTG to identify the OTG and EH supplement release number with which the OTG device is compliant, so adds it for usb_otg_descriptor. Signed-off-by: Macpaul Lin Signed-off-by: Li Jun --- include/uapi/linux/usb/ch9.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/uapi/linux/usb/ch9.h b/include/uapi/linux/usb/ch9.h index aa33fd1..ce405fb 100644 --- a/include/uapi/linux/usb/ch9.h +++ b/include/uapi/linux/usb/ch9.h @@ -665,13 +665,17 @@ struct usb_qualifier_descriptor { /*-------------------------------------------------------------------------*/ +struct bcdOTG { + __le16 bcdOTG; +}; -/* USB_DT_OTG (from OTG 1.0a supplement) */ +/* USB_DT_OTG */ struct usb_otg_descriptor { __u8 bLength; __u8 bDescriptorType; __u8 bmAttributes; /* support for HNP, SRP, etc */ + struct bcdOTG otg_rev[0]; } __attribute__ ((packed)); /* from usb_otg_descriptor.bmAttributes */ -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html