summaryrefslogtreecommitdiff
path: root/apps/examples
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-03-21 18:01:07 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-03-21 18:01:07 +0000
commit620e6ff88867894e87e423777470b96cc322e2d3 (patch)
tree49b04c6302cb3eb451491553f4e767f1a1a66bfa /apps/examples
parentd6058d6314dee58f85a70287f01dfc399f8c45e8 (diff)
downloadnuttx-620e6ff88867894e87e423777470b96cc322e2d3.tar.gz
nuttx-620e6ff88867894e87e423777470b96cc322e2d3.tar.bz2
nuttx-620e6ff88867894e87e423777470b96cc322e2d3.zip
Move file-system header files to include/nuttx/fs
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4499 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/examples')
-rw-r--r--apps/examples/mount/ramdisk.c2
-rw-r--r--apps/examples/nxffs/nxffs_main.c2
-rw-r--r--apps/examples/pashello/device.c6
3 files changed, 5 insertions, 5 deletions
diff --git a/apps/examples/mount/ramdisk.c b/apps/examples/mount/ramdisk.c
index f596dae52..9688580c0 100644
--- a/apps/examples/mount/ramdisk.c
+++ b/apps/examples/mount/ramdisk.c
@@ -46,7 +46,7 @@
#include <errno.h>
#include <nuttx/ramdisk.h>
-#include <nuttx/mkfatfs.h>
+#include <nuttx/fs/mkfatfs.h>
#include "mount.h"
diff --git a/apps/examples/nxffs/nxffs_main.c b/apps/examples/nxffs/nxffs_main.c
index 863f8bb43..bc28cfa73 100644
--- a/apps/examples/nxffs/nxffs_main.c
+++ b/apps/examples/nxffs/nxffs_main.c
@@ -53,7 +53,7 @@
#include <debug.h>
#include <nuttx/mtd.h>
-#include <nuttx/nxffs.h>
+#include <nuttx/fs/nxffs.h>
/****************************************************************************
* Definitions
diff --git a/apps/examples/pashello/device.c b/apps/examples/pashello/device.c
index 5f0038ad7..a3950e6a3 100644
--- a/apps/examples/pashello/device.c
+++ b/apps/examples/pashello/device.c
@@ -1,8 +1,8 @@
/****************************************************************************
* examples/pashello/device.c
*
- * Copyright (C) 2008 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Copyright (C) 2008, 2012 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -46,7 +46,7 @@
#include <sys/types.h>
#include <string.h>
#include <errno.h>
-#include <nuttx/fs.h>
+#include <nuttx/fs/fs.h>
#include "hello.h"
#include "pashello.h"