aboutsummaryrefslogtreecommitdiff
path: root/payloads/libpayload/drivers/usb/usbmsc.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-02-15 09:27:11 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-02-17 16:01:50 +0000
commit824b4b8a2038e91d008ac60919fbc742c3facc61 (patch)
treec92e2311f426e618ee992459b03af3bc6112e233 /payloads/libpayload/drivers/usb/usbmsc.c
parent9c26605353873165805ce611d93e259a8545853e (diff)
payloads: Fix typos
Change-Id: Ib7f1ba1766e5c972542ce7571a8aa3583c513823 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/38911 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'payloads/libpayload/drivers/usb/usbmsc.c')
-rwxr-xr-xpayloads/libpayload/drivers/usb/usbmsc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/payloads/libpayload/drivers/usb/usbmsc.c b/payloads/libpayload/drivers/usb/usbmsc.c
index d8b7bcea6e..50fd24b1f8 100755
--- a/payloads/libpayload/drivers/usb/usbmsc.c
+++ b/payloads/libpayload/drivers/usb/usbmsc.c
@@ -538,7 +538,7 @@ usb_msc_test_unit_ready (usbdev_t *dev)
time_t start_time_secs;
struct timeval tv;
/* SCSI/ATA specs say we have to wait up to 30s, but most devices
- * are ready much sooner. Use a 5 sec timeout to better accomodate
+ * are ready much sooner. Use a 5 sec timeout to better accommodate
* devices which fail to respond. */
const int timeout_secs = 5;
@@ -569,7 +569,7 @@ usb_msc_test_unit_ready (usbdev_t *dev)
MSC_INST (dev)->ready = USB_MSC_NOT_READY;
}
- /* Don't bother spinning up the stroage device if the device is not
+ /* Don't bother spinning up the storage device if the device is not
* ready. This can happen when empty card readers are present.
* Polling will pick it back up if readiness changes. */
if (!MSC_INST (dev)->ready)