summaryrefslogtreecommitdiff
path: root/nuttx/drivers/fifo.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-06-10 15:22:49 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-06-10 15:22:49 +0000
commita40fde233cc74a5ee67442c4575448224f995b1d (patch)
tree9edc06d138a9bb3f36638ba6604f748b50634043 /nuttx/drivers/fifo.c
parent222b94e8cf815b57199fba647bfdc83478a59140 (diff)
downloadpx4-nuttx-a40fde233cc74a5ee67442c4575448224f995b1d.tar.gz
px4-nuttx-a40fde233cc74a5ee67442c4575448224f995b1d.tar.bz2
px4-nuttx-a40fde233cc74a5ee67442c4575448224f995b1d.zip
All file_operations vtables should be static const
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1871 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/drivers/fifo.c')
-rw-r--r--nuttx/drivers/fifo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/drivers/fifo.c b/nuttx/drivers/fifo.c
index 7775af9ae..4e0bbf49c 100644
--- a/nuttx/drivers/fifo.c
+++ b/nuttx/drivers/fifo.c
@@ -67,7 +67,7 @@
* Private Data
****************************************************************************/
-static struct file_operations fifo_fops =
+static const struct file_operations fifo_fops =
{
pipecommon_open, /* open */
pipecommon_close, /* close */