summaryrefslogtreecommitdiff
path: root/nuttx/drivers/usbhost
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-01-11 12:43:02 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-01-11 12:43:02 +0000
commiteedfb898274adffee3882b6dfc45b96c369c2343 (patch)
treeca8bd2429e48e93609bbd3a95416d5a3d860790e /nuttx/drivers/usbhost
parentfd7736cf0ea9a5ee24aa96585e0bfd83dc07cb90 (diff)
downloadpx4-nuttx-eedfb898274adffee3882b6dfc45b96c369c2343.tar.gz
px4-nuttx-eedfb898274adffee3882b6dfc45b96c369c2343.tar.bz2
px4-nuttx-eedfb898274adffee3882b6dfc45b96c369c2343.zip
README updates
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3242 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/drivers/usbhost')
-rw-r--r--nuttx/drivers/usbhost/usbhost_storage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/drivers/usbhost/usbhost_storage.c b/nuttx/drivers/usbhost/usbhost_storage.c
index e0f4dc4ad..5c44fd9f6 100644
--- a/nuttx/drivers/usbhost/usbhost_storage.c
+++ b/nuttx/drivers/usbhost/usbhost_storage.c
@@ -1085,14 +1085,14 @@ static inline int usbhost_cfgdesc(FAR struct usbhost_state_s *priv,
ret = DRVR_EPALLOC(priv->drvr, &boutdesc, &priv->bulkout);
if (ret != OK)
{
- udbg("ERROR: Failed to allocated Bulk OUT endpoint\n");
+ udbg("ERROR: Failed to allocate Bulk OUT endpoint\n");
return ret;
}
ret = DRVR_EPALLOC(priv->drvr, &bindesc, &priv->bulkin);
if (ret != OK)
{
- udbg("ERROR: Failed to allocated Bulk IN endpoint\n");
+ udbg("ERROR: Failed to allocate Bulk IN endpoint\n");
(void)DRVR_EPFREE(priv->drvr, priv->bulkout);
return ret;
}