summaryrefslogtreecommitdiff
path: root/nuttx/drivers/usbhost
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-12-05 10:37:55 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-12-05 10:37:55 -0600
commit96483c3637253cf00027a6312ba422a411f913bf (patch)
tree5255227726fb856a15edddc84b46c356cd9be2ff /nuttx/drivers/usbhost
parent1077db9bc326ffdebacf9589393f085c2b8e7755 (diff)
downloadpx4-nuttx-96483c3637253cf00027a6312ba422a411f913bf.tar.gz
px4-nuttx-96483c3637253cf00027a6312ba422a411f913bf.tar.bz2
px4-nuttx-96483c3637253cf00027a6312ba422a411f913bf.zip
LM: Don't initialize .data if running in SRAM. Global missing intialize type. SAMA5 NAND: Fix for read nand in smaller chunks
Diffstat (limited to 'nuttx/drivers/usbhost')
-rw-r--r--nuttx/drivers/usbhost/usbhost_storage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/drivers/usbhost/usbhost_storage.c b/nuttx/drivers/usbhost/usbhost_storage.c
index e0d662286..7c57371ee 100644
--- a/nuttx/drivers/usbhost/usbhost_storage.c
+++ b/nuttx/drivers/usbhost/usbhost_storage.c
@@ -1605,7 +1605,7 @@ static FAR struct usbmsc_cbw_s *usbhost_cbwalloc(FAR struct usbhost_state_s *pri
DEBUGASSERT(priv->tbuffer && priv->tbuflen >= sizeof(struct usbmsc_cbw_s))
- /* Intialize the CBW sructure */
+ /* Initialize the CBW sructure */
cbw = (FAR struct usbmsc_cbw_s *)priv->tbuffer;
memset(cbw, 0, sizeof(struct usbmsc_cbw_s));