summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Trumtrar <s.trumtrar@pengutronix.de>2012-08-30 13:13:59 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2012-08-31 09:26:39 +0200
commitaf23372773b4620b58a6792a02ef671407d93a19 (patch)
tree5d63769f23e8d96ef1462e34e4f1fd8024ed353c
parent738c57eeaa7958aae6600f6f668fbda8a5128cd4 (diff)
downloadbarebox-af23372773b4620b58a6792a02ef671407d93a19.tar.gz
barebox-af23372773b4620b58a6792a02ef671407d93a19.tar.xz
trivial: fix spelling in usb code
Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--commands/usb.c2
-rw-r--r--drivers/usb/core/usb.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/commands/usb.c b/commands/usb.c
index d02ea4b0f7..729a40257c 100644
--- a/commands/usb.c
+++ b/commands/usb.c
@@ -50,7 +50,7 @@ static int do_usb(int argc, char *argv[])
BAREBOX_CMD_HELP_START(usb)
BAREBOX_CMD_HELP_USAGE("usb [-f]\n")
BAREBOX_CMD_HELP_SHORT("Scan for USB devices.\n")
-BAREBOX_CMD_HELP_OPT("-f", "force. Rescan if if if have scanned once\n")
+BAREBOX_CMD_HELP_OPT("-f", "force. Rescan although scanned already\n")
BAREBOX_CMD_HELP_END
BAREBOX_CMD_START(usb)
diff --git a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c
index a5075d5436..81ae9f18c2 100644
--- a/drivers/usb/core/usb.c
+++ b/drivers/usb/core/usb.c
@@ -528,10 +528,10 @@ int usb_submit_int_msg(struct usb_device *dev, unsigned long pipe,
}
/*
- * submits a control message and waits for comletion (at least timeout * 1ms)
+ * submits a control message and waits for completion (at least timeout * 1ms)
* If timeout is 0, we don't wait for completion (used as example to set and
* clear keyboards LEDs). For data transfers, (storage transfers) we don't
- * allow control messages with 0 timeout, by previousely resetting the flag
+ * allow control messages with 0 timeout, by previously resetting the flag
* asynch_allowed (usb_disable_asynch(1)).
* returns the transfered length if OK or -1 if error. The transfered length
* and the current status are stored in the dev->act_len and dev->status.