summaryrefslogtreecommitdiffstats
path: root/sys/miscfs/devfs/devfs_front.c
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1995-05-30 08:16:23 +0000
committerrgrimes <rgrimes@FreeBSD.org>1995-05-30 08:16:23 +0000
commitc86f0c7a71e7ade3e38b325c186a9cf374e0411e (patch)
tree176f04f674860c7cfae9ac5d2ff4d4e1d73cb2b7 /sys/miscfs/devfs/devfs_front.c
parent423ba8f9bc23d93bfc244aca9b12563b1c9de90d (diff)
downloadFreeBSD-src-c86f0c7a71e7ade3e38b325c186a9cf374e0411e.zip
FreeBSD-src-c86f0c7a71e7ade3e38b325c186a9cf374e0411e.tar.gz
Remove trailing whitespace.
Diffstat (limited to 'sys/miscfs/devfs/devfs_front.c')
-rw-r--r--sys/miscfs/devfs/devfs_front.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/miscfs/devfs/devfs_front.c b/sys/miscfs/devfs/devfs_front.c
index 14bf104..a3d0255 100644
--- a/sys/miscfs/devfs/devfs_front.c
+++ b/sys/miscfs/devfs/devfs_front.c
@@ -1,7 +1,7 @@
/*
* Written by Julian Elischer (julian@DIALix.oz.au)
*
- * $Header: /home/ncvs/src/sys/miscfs/devfs/devfs_front.c,v 1.2 1995/04/20 07:34:52 julian Exp $
+ * $Header: /home/ncvs/src/sys/miscfs/devfs/devfs_front.c,v 1.3 1995/04/20 07:42:41 julian Exp $
*
*/
@@ -52,7 +52,7 @@ int devfs_add_fronts(devnm_p parent,devnm_p child) /*proto*/
child->name);
continue;
}
-
+
}
return(0); /* for now always succeed */
}
@@ -201,14 +201,14 @@ int dev_mk_front(dn_p parent,devnm_p back,devnm_p *devnm_pp , struct devfsmount
/*
* not accounted for in the link counts..
* only used to get from the front name entries
- * to the total length of the names
+ * to the total length of the names
* which is stored in the parent's devnode
*/
newfp->parent = parent; /* is NULL for root */
/*******************************************************\
* Put it in the appropriate back/front list too. *
\*******************************************************/
- newfp->next_front = *back->prev_frontp;
+ newfp->next_front = *back->prev_frontp;
newfp->prev_frontp = back->prev_frontp;
*back->prev_frontp = newfp;
back->prev_frontp = &(newfp->next_front);
@@ -237,7 +237,7 @@ int dev_mk_front(dn_p parent,devnm_p back,devnm_p *devnm_pp , struct devfsmount
/*
* duplicate the backing tree into a tree of nodes hung off the
- * mount point given as the argument. Do this by
+ * mount point given as the argument. Do this by
* calling dev_mk_front() which recurses all the way
* up the tree..
*/
@@ -293,7 +293,7 @@ void dev_free_front(devnm_p devfp) /*proto*/
{
dev_free_front(devfp->dnp->by.Dir.dirlist);
}
- /*
+ /*
* drop the reference counts on our and our parent's
* nodes for "." and ".." (root has ".." -> "." )
*/
@@ -319,7 +319,7 @@ void dev_free_front(devnm_p devfp) /*proto*/
}
/*
* If the node has a backing pointer we need to free ourselves
- * from that..
+ * from that..
* Remember that we may not HAVE a backing node.
*/
if (back = devfp->as.front.realthing) /* yes an assign */
OpenPOWER on IntegriCloud