diff options
author | Masanari Iida <standby24x7@gmail.com> | 2013-04-08 13:06:50 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2013-04-12 09:21:36 -0400 |
commit | a895d57da04a4a24cda996e1a72425ff7e7e6c22 (patch) | |
tree | 39ce16341f0bd80113ad72442a14e54625d0c9c1 /drivers/usb/misc | |
parent | 393b148f9d0e70cfcb0096985bb0f0742802929e (diff) |
treewide: Fix typo in printks
Correct spelling typos in printk and comments.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/usb/misc')
-rw-r--r-- | drivers/usb/misc/iowarrior.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/misc/iowarrior.c b/drivers/usb/misc/iowarrior.c index db46143c67a6..d36f34e25bed 100644 --- a/drivers/usb/misc/iowarrior.c +++ b/drivers/usb/misc/iowarrior.c | |||
@@ -672,7 +672,7 @@ static int iowarrior_release(struct inode *inode, struct file *file) | |||
672 | retval = -ENODEV; /* close called more than once */ | 672 | retval = -ENODEV; /* close called more than once */ |
673 | mutex_unlock(&dev->mutex); | 673 | mutex_unlock(&dev->mutex); |
674 | } else { | 674 | } else { |
675 | dev->opened = 0; /* we're closeing now */ | 675 | dev->opened = 0; /* we're closing now */ |
676 | retval = 0; | 676 | retval = 0; |
677 | if (dev->present) { | 677 | if (dev->present) { |
678 | /* | 678 | /* |
@@ -802,7 +802,7 @@ static int iowarrior_probe(struct usb_interface *interface, | |||
802 | /* this one will match for the IOWarrior56 only */ | 802 | /* this one will match for the IOWarrior56 only */ |
803 | dev->int_out_endpoint = endpoint; | 803 | dev->int_out_endpoint = endpoint; |
804 | } | 804 | } |
805 | /* we have to check the report_size often, so remember it in the endianess suitable for our machine */ | 805 | /* we have to check the report_size often, so remember it in the endianness suitable for our machine */ |
806 | dev->report_size = usb_endpoint_maxp(dev->int_in_endpoint); | 806 | dev->report_size = usb_endpoint_maxp(dev->int_in_endpoint); |
807 | if ((dev->interface->cur_altsetting->desc.bInterfaceNumber == 0) && | 807 | if ((dev->interface->cur_altsetting->desc.bInterfaceNumber == 0) && |
808 | (dev->product_id == USB_DEVICE_ID_CODEMERCS_IOW56)) | 808 | (dev->product_id == USB_DEVICE_ID_CODEMERCS_IOW56)) |