diff options
author | Rahul Bedarkar <rahulbedarkar89@gmail.com> | 2014-01-04 11:24:41 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-01-07 16:17:40 -0800 |
commit | 025d44309f92bd5e3d1b2c7fab66836ab25b541b (patch) | |
tree | 261fde505eb086f5077730f678d4f9471b2ab699 /drivers/usb/core/urb.c | |
parent | d7e92f7f768477c6ab5ec6b12f854db3e716b2e5 (diff) | |
download | linux-025d44309f92bd5e3d1b2c7fab66836ab25b541b.tar.gz linux-025d44309f92bd5e3d1b2c7fab66836ab25b541b.tar.bz2 linux-025d44309f92bd5e3d1b2c7fab66836ab25b541b.zip |
USB: core: correct spelling mistakes in comments and warning
Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/core/urb.c')
-rw-r--r-- | drivers/usb/core/urb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/core/urb.c b/drivers/usb/core/urb.c index f4cb7fc1c929..172d2698b8db 100644 --- a/drivers/usb/core/urb.c +++ b/drivers/usb/core/urb.c @@ -53,7 +53,7 @@ EXPORT_SYMBOL_GPL(usb_init_urb); * valid options for this. * * Creates an urb for the USB driver to use, initializes a few internal - * structures, incrementes the usage counter, and returns a pointer to it. + * structures, increments the usage counter, and returns a pointer to it. * * If the driver want to use this urb for interrupt, control, or bulk * endpoints, pass '0' as the number of iso packets. @@ -281,7 +281,7 @@ EXPORT_SYMBOL_GPL(usb_unanchor_urb); * * Device drivers must explicitly request that repetition, by ensuring that * some URB is always on the endpoint's queue (except possibly for short - * periods during completion callacks). When there is no longer an urb + * periods during completion callbacks). When there is no longer an urb * queued, the endpoint's bandwidth reservation is canceled. This means * drivers can use their completion handlers to ensure they keep bandwidth * they need, by reinitializing and resubmitting the just-completed urb |