summaryrefslogtreecommitdiff
path: root/nuttx/fs
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-11-28 13:30:06 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-11-28 13:30:06 -0600
commit1bcbded7141d063cc1732aff2ffe8730ad934820 (patch)
treea9308d0ad7c7f14c6c1ae1e653a97c44a17435df /nuttx/fs
parent89bb53cf38e7db693ef1b21e071425cbc2e8b999 (diff)
downloadpx4-nuttx-1bcbded7141d063cc1732aff2ffe8730ad934820.tar.gz
px4-nuttx-1bcbded7141d063cc1732aff2ffe8730ad934820.tar.bz2
px4-nuttx-1bcbded7141d063cc1732aff2ffe8730ad934820.zip
LPC31 EHCI: Make stream disable a configurable option
Diffstat (limited to 'nuttx/fs')
-rw-r--r--nuttx/fs/fs_inode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/fs/fs_inode.c b/nuttx/fs/fs_inode.c
index 0fe8689c7..afb88532c 100644
--- a/nuttx/fs/fs_inode.c
+++ b/nuttx/fs/fs_inode.c
@@ -61,7 +61,7 @@
* because there can be cycles. For example, it may be necessary to destroy
* a block driver inode on umount() after a removable block device has been
* removed. In that case umount() hold the inode semaphore, but the block
- * driver may callback to unregister_blockdriver() after the un-mount,
+ * driver may callback to unregister_blockdriver() after the un-mount,
* requiring the seamphore again.
*/
@@ -187,7 +187,7 @@ void fs_initialize(void)
(void)sem_init(&g_inode_sem.sem, 0, 1);
g_inode_sem.holder = NO_HOLDER;
g_inode_sem.count = 0;
-
+
/* Initialize files array (if it is used) */
#ifdef CONFIG_HAVE_WEAKFUNCTIONS
@@ -218,7 +218,7 @@ void inode_semtake(void)
/* Yes... just increment the count */
g_inode_sem.count++;
- DEBUGASSERT(g_inode_sem.count > 0);
+ DEBUGASSERT(g_inode_sem.count > 0);
}
/* Take the semaphore (perhaps waiting) */