diff mbox series

[USB,v2,2/2] usb: raw-gadget: fix typo in uapi headers

Message ID 635f48fcb4bb99c70ab9d7f0dfe84d1ec7dc540e.1587734346.git.andreyknvl@google.com (mailing list archive)
State New, archived
Headers show
Series [USB,v2,1/2] usb: raw-gadget: fix return value of ep read ioctls | expand

Commit Message

Andrey Konovalov April 24, 2020, 1:20 p.m. UTC
Change "trasferred" into "transferred".

Change-Id: I2d8d1dcc9ba6aacafc03f4b76caca7409a6da1a6
---

Changes in v2:

- Updated commit message.

---
 include/uapi/linux/usb/raw_gadget.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Greg Kroah-Hartman April 24, 2020, 1:37 p.m. UTC | #1
On Fri, Apr 24, 2020 at 03:20:20PM +0200, Andrey Konovalov wrote:
> Change "trasferred" into "transferred".
> 
> Change-Id: I2d8d1dcc9ba6aacafc03f4b76caca7409a6da1a6

What is that?  :)

And no signed-off-by?
Andrey Konovalov April 24, 2020, 3:01 p.m. UTC | #2
On Fri, Apr 24, 2020 at 3:37 PM Greg Kroah-Hartman
<gregkh@linuxfoundation.org> wrote:
>
> On Fri, Apr 24, 2020 at 03:20:20PM +0200, Andrey Konovalov wrote:
> > Change "trasferred" into "transferred".
> >
> > Change-Id: I2d8d1dcc9ba6aacafc03f4b76caca7409a6da1a6
>
> What is that?  :)
>
> And no signed-off-by?

That's me mistakenly removing signed-off-by instead of the gerrit tag
:) Let me try sending that again.
diff mbox series

Patch

diff --git a/include/uapi/linux/usb/raw_gadget.h b/include/uapi/linux/usb/raw_gadget.h
index ea375082b3ac..8544802b25bd 100644
--- a/include/uapi/linux/usb/raw_gadget.h
+++ b/include/uapi/linux/usb/raw_gadget.h
@@ -119,7 +119,7 @@  struct usb_raw_ep_io {
  * received on endpoint 0, provided that was an IN (OUT for READ) request and
  * waits until the urb is completed. Copies received data to user for READ.
  * Accepts a pointer to the usb_raw_ep_io struct as an argument.
- * Returns length of trasferred data on success or negative error code on
+ * Returns length of transferred data on success or negative error code on
  * failure.
  */
 #define USB_RAW_IOCTL_EP0_WRITE		_IOW('U', 3, struct usb_raw_ep_io)
@@ -145,7 +145,7 @@  struct usb_raw_ep_io {
  * request and waits until the urb is completed. Copies received data to user
  * for READ.
  * Accepts a pointer to the usb_raw_ep_io struct as an argument.
- * Returns length of trasferred data on success or negative error code on
+ * Returns length of transferred data on success or negative error code on
  * failure.
  */
 #define USB_RAW_IOCTL_EP_WRITE		_IOW('U', 7, struct usb_raw_ep_io)