diff options
author | Chris Rorvick <chris@rorvick.com> | 2015-01-14 21:52:28 -0600 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-01-25 20:48:28 +0800 |
commit | 9636c37843c9355c1ab6adcd8491186cbdc3b950 (patch) | |
tree | a5454ac2d97fff1ed1dbe09868073dc661bace4d /include | |
parent | c99e76c55f68eaa0c307ba25803c4e59c2fca1ca (diff) |
usb: Fix typo in `struct usb_host_interface' comment
The descriptor member `bNumEndpoints' is plural.
Signed-off-by: Chris Rorvick <chris@rorvick.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/usb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/usb.h b/include/linux/usb.h index f89c24a03bd9..4add5661080a 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h @@ -82,7 +82,7 @@ struct usb_host_interface { int extralen; unsigned char *extra; /* Extra descriptors */ - /* array of desc.bNumEndpoint endpoints associated with this + /* array of desc.bNumEndpoints endpoints associated with this * interface setting. these will be in no particular order. */ struct usb_host_endpoint *endpoint; |