[rtems commit] devfs: Include <rtems/devfs.h>

Sebastian Huber sebh at rtems.org
Wed Dec 13 08:08:19 UTC 2017


Module:    rtems
Branch:    master
Commit:    339069fc816e85a1205717581be688472b90feb6
Changeset: http://git.rtems.org/rtems/commit/?id=339069fc816e85a1205717581be688472b90feb6

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Wed Dec 13 08:02:09 2017 +0100

devfs: Include <rtems/devfs.h>

Prepare for header file move to common include directory.

Update #3254.

---

 cpukit/libfs/src/devfs/devclose.c    | 2 +-
 cpukit/libfs/src/devfs/devfs_eval.c  | 2 +-
 cpukit/libfs/src/devfs/devfs_init.c  | 2 +-
 cpukit/libfs/src/devfs/devfs_mknod.c | 2 +-
 cpukit/libfs/src/devfs/devfs_show.c  | 2 +-
 cpukit/libfs/src/devfs/devioctl.c    | 2 +-
 cpukit/libfs/src/devfs/devopen.c     | 2 +-
 cpukit/libfs/src/devfs/devread.c     | 2 +-
 cpukit/libfs/src/devfs/devstat.c     | 2 +-
 cpukit/libfs/src/devfs/devwrite.c    | 2 +-
 10 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/cpukit/libfs/src/devfs/devclose.c b/cpukit/libfs/src/devfs/devclose.c
index 65c7308..e3ca969 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 295c4e5..ba8e36f 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 1e960d2..e8ad761 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 6fe709c..3b86d8c 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 0ea1306..07e67c6 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 abfba43..693d30e 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 822ba17..d6d5c80 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 e7ec352..8ae3e84 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 40eb2f6..c88f729 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 3ec794e..7fd8006 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>
 



More information about the vc mailing list