summaryrefslogtreecommitdiff
path: root/cpukit/libfs/src/devfs/devfs_mknod.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-11-29 13:20:53 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-11-29 13:20:53 +0000
commit0a7278e49713596cd0d4b7e2d071e40a6940746f (patch)
treec1c61b6d608ae574575294eb70bdd15a12362d6a /cpukit/libfs/src/devfs/devfs_mknod.c
parent0893220b2a4507fc2619b625ecb0d6241ef5cd6f (diff)
Whitespace removal.
Diffstat (limited to 'cpukit/libfs/src/devfs/devfs_mknod.c')
-rw-r--r--cpukit/libfs/src/devfs/devfs_mknod.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpukit/libfs/src/devfs/devfs_mknod.c b/cpukit/libfs/src/devfs/devfs_mknod.c
index 6757877efc..d8e5a30d5f 100644
--- a/cpukit/libfs/src/devfs/devfs_mknod.c
+++ b/cpukit/libfs/src/devfs/devfs_mknod.c
@@ -22,9 +22,9 @@
int devFS_mknod(
const char *path,
- mode_t mode,
- dev_t dev,
- rtems_filesystem_location_info_t *pathloc
+ mode_t mode,
+ dev_t dev,
+ rtems_filesystem_location_info_t *pathloc
)
{
int i;
@@ -35,14 +35,14 @@ int devFS_mknod(
ISR_Level level;
/*
- * This is a special case. In rtems_filesystem_initialize,
- * a special device '/dev' will be created. We check this
- * condition and do not create the '/dev' and the 'path'
+ * This is a special case. In rtems_filesystem_initialize,
+ * a special device '/dev' will be created. We check this
+ * condition and do not create the '/dev' and the 'path'
* actually passed in is 'dev', not '/dev'. Just return 0 to
* indicate we are OK.
*/
- if ((path[0] == 'd') && (path[1] == 'e') &&
+ if ((path[0] == 'd') && (path[1] == 'e') &&
(path[2] == 'v') && (path[3] == '\0'))
return 0;