summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-12-13 08:02:09 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-12-13 09:04:25 +0100
commit339069fc816e85a1205717581be688472b90feb6 (patch)
tree547b19b9f67720c4becd2969f318f572949c6d5d
parentIMFS: Include <rtems/imfs.h> (diff)
downloadrtems-339069fc816e85a1205717581be688472b90feb6.tar.bz2
devfs: Include <rtems/devfs.h>
Prepare for header file move to common include directory. Update #3254.
-rw-r--r--cpukit/libfs/src/devfs/devclose.c2
-rw-r--r--cpukit/libfs/src/devfs/devfs_eval.c2
-rw-r--r--cpukit/libfs/src/devfs/devfs_init.c2
-rw-r--r--cpukit/libfs/src/devfs/devfs_mknod.c2
-rw-r--r--cpukit/libfs/src/devfs/devfs_show.c2
-rw-r--r--cpukit/libfs/src/devfs/devioctl.c2
-rw-r--r--cpukit/libfs/src/devfs/devopen.c2
-rw-r--r--cpukit/libfs/src/devfs/devread.c2
-rw-r--r--cpukit/libfs/src/devfs/devstat.c2
-rw-r--r--cpukit/libfs/src/devfs/devwrite.c2
10 files changed, 10 insertions, 10 deletions
diff --git a/cpukit/libfs/src/devfs/devclose.c b/cpukit/libfs/src/devfs/devclose.c
index 65c7308148..e3ca969988 100644
--- a/cpukit/libfs/src/devfs/devclose.c
+++ b/cpukit/libfs/src/devfs/devclose.c
@@ -15,7 +15,7 @@
#include "config.h"
#endif
-#include "devfs.h"
+#include <rtems/devfs.h>
#include <rtems/deviceio.h>
diff --git a/cpukit/libfs/src/devfs/devfs_eval.c b/cpukit/libfs/src/devfs/devfs_eval.c
index 295c4e5cb5..ba8e36fad0 100644
--- a/cpukit/libfs/src/devfs/devfs_eval.c
+++ b/cpukit/libfs/src/devfs/devfs_eval.c
@@ -17,7 +17,7 @@
#include <string.h>
-#include "devfs.h"
+#include <rtems/devfs.h>
static devFS_node *devFS_search_node(
const devFS_data *data,
diff --git a/cpukit/libfs/src/devfs/devfs_init.c b/cpukit/libfs/src/devfs/devfs_init.c
index 1e960d2b5a..e8ad761f29 100644
--- a/cpukit/libfs/src/devfs/devfs_init.c
+++ b/cpukit/libfs/src/devfs/devfs_init.c
@@ -15,7 +15,7 @@
#include "config.h"
#endif
-#include "devfs.h"
+#include <rtems/devfs.h>
const rtems_filesystem_operations_table devFS_ops = {
.lock_h = rtems_filesystem_default_lock,
diff --git a/cpukit/libfs/src/devfs/devfs_mknod.c b/cpukit/libfs/src/devfs/devfs_mknod.c
index 6fe709cfc4..3b86d8c192 100644
--- a/cpukit/libfs/src/devfs/devfs_mknod.c
+++ b/cpukit/libfs/src/devfs/devfs_mknod.c
@@ -19,7 +19,7 @@
#include <stdlib.h>
#include <string.h>
-#include "devfs.h"
+#include <rtems/devfs.h>
int devFS_mknod(
const rtems_filesystem_location_info_t *parentloc,
diff --git a/cpukit/libfs/src/devfs/devfs_show.c b/cpukit/libfs/src/devfs/devfs_show.c
index 0ea130686a..07e67c6f51 100644
--- a/cpukit/libfs/src/devfs/devfs_show.c
+++ b/cpukit/libfs/src/devfs/devfs_show.c
@@ -15,7 +15,7 @@
#include "config.h"
#endif
-#include "devfs.h"
+#include <rtems/devfs.h>
#include <rtems/bspIo.h>
diff --git a/cpukit/libfs/src/devfs/devioctl.c b/cpukit/libfs/src/devfs/devioctl.c
index abfba43667..693d30e825 100644
--- a/cpukit/libfs/src/devfs/devioctl.c
+++ b/cpukit/libfs/src/devfs/devioctl.c
@@ -15,7 +15,7 @@
#include "config.h"
#endif
-#include "devfs.h"
+#include <rtems/devfs.h>
#include <rtems/deviceio.h>
diff --git a/cpukit/libfs/src/devfs/devopen.c b/cpukit/libfs/src/devfs/devopen.c
index 822ba170de..d6d5c8062d 100644
--- a/cpukit/libfs/src/devfs/devopen.c
+++ b/cpukit/libfs/src/devfs/devopen.c
@@ -15,7 +15,7 @@
#include "config.h"
#endif
-#include "devfs.h"
+#include <rtems/devfs.h>
#include <rtems/deviceio.h>
diff --git a/cpukit/libfs/src/devfs/devread.c b/cpukit/libfs/src/devfs/devread.c
index e7ec352619..8ae3e84b65 100644
--- a/cpukit/libfs/src/devfs/devread.c
+++ b/cpukit/libfs/src/devfs/devread.c
@@ -15,7 +15,7 @@
#include "config.h"
#endif
-#include "devfs.h"
+#include <rtems/devfs.h>
#include <rtems/deviceio.h>
diff --git a/cpukit/libfs/src/devfs/devstat.c b/cpukit/libfs/src/devfs/devstat.c
index 40eb2f6df8..c88f729924 100644
--- a/cpukit/libfs/src/devfs/devstat.c
+++ b/cpukit/libfs/src/devfs/devstat.c
@@ -15,7 +15,7 @@
#include "config.h"
#endif
-#include "devfs.h"
+#include <rtems/devfs.h>
int devFS_stat(
const rtems_filesystem_location_info_t *loc,
diff --git a/cpukit/libfs/src/devfs/devwrite.c b/cpukit/libfs/src/devfs/devwrite.c
index 3ec794ebeb..7fd8006776 100644
--- a/cpukit/libfs/src/devfs/devwrite.c
+++ b/cpukit/libfs/src/devfs/devwrite.c
@@ -15,7 +15,7 @@
#include "config.h"
#endif
-#include "devfs.h"
+#include <rtems/devfs.h>
#include <rtems/deviceio.h>