diff options
author | Vincent Pelletier <plr.vincent@gmail.com> | 2017-02-17 11:20:38 +0000 |
---|---|---|
committer | Felipe Balbi <felipe.balbi@linux.intel.com> | 2017-04-11 10:58:16 +0300 |
commit | 1f7da4f87a594764c3a9d7f0d67ae5f996cbc3c9 (patch) | |
tree | 8f2fb15d58157c946056da52e3dec49f8ba4218f | |
parent | b4b7e060bd4aaba45563b6c728002cb92e9af236 (diff) | |
download | talos-op-linux-1f7da4f87a594764c3a9d7f0d67ae5f996cbc3c9.tar.gz talos-op-linux-1f7da4f87a594764c3a9d7f0d67ae5f996cbc3c9.zip |
usb: gadget: f_fs: Fix ExtCompat documentation in uapi header
The code was fixed in
commit 53642399aa71 ("usb: gadget: f_fs: Fix wrong check on reserved1 wof OS_DESC_EXT_COMPAT")
but the in-header documentation kept referencing 0 as the expected value.
Reference 1 instead as per original commit message.
Signed-off-by: Vincent Pelletier <plr.vincent@gmail.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
-rw-r--r-- | include/uapi/linux/usb/functionfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/usb/functionfs.h b/include/uapi/linux/usb/functionfs.h index b2a31a55a612..062606f02309 100644 --- a/include/uapi/linux/usb/functionfs.h +++ b/include/uapi/linux/usb/functionfs.h @@ -158,7 +158,7 @@ struct usb_ext_prop_desc { * |-----+-----------------------+------+-------------------------------------| * | 0 | bFirstInterfaceNumber | U8 | index of the interface or of the 1st| * | | | | interface in an IAD group | - * | 1 | Reserved | U8 | 0 | + * | 1 | Reserved | U8 | 1 | * | 2 | CompatibleID | U8[8]| compatible ID string | * | 10 | SubCompatibleID | U8[8]| subcompatible ID string | * | 18 | Reserved | U8[6]| 0 | |