diff options
author | julian <julian@FreeBSD.org> | 1997-09-21 22:14:54 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 1997-09-21 22:14:54 +0000 |
commit | 186e048a374a9cff56dba8b9638b5aeb12b56666 (patch) | |
tree | 116b88f2340cba333153e216638dc86292c6d602 | |
parent | 202e8d2ad2658c2441c7ced24f3727496c9c143e (diff) | |
download | FreeBSD-src-186e048a374a9cff56dba8b9638b5aeb12b56666.zip FreeBSD-src-186e048a374a9cff56dba8b9638b5aeb12b56666.tar.gz |
Fix a comment.
-rw-r--r-- | sys/kern/kern_conf.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/kern/kern_conf.c b/sys/kern/kern_conf.c index 4b66c1c..3693861 100644 --- a/sys/kern/kern_conf.c +++ b/sys/kern/kern_conf.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: kern_conf.c,v 1.18 1997/08/02 14:31:26 bde Exp $ + * $Id: kern_conf.c,v 1.19 1997/09/14 02:52:12 peter Exp $ */ #include <sys/param.h> @@ -162,7 +162,11 @@ int TTYPE##_add(dev_t *descrip, \ ADDENTRY(bdevsw, nblkdev,bdevsw_ALLOCSTART) ADDENTRY(cdevsw, nchrdev,cdevsw_ALLOCSTART) -/* Maybe the author might indicate what the f*@# this is for? */ +/* + * Since the bdevsw struct for a disk contains all the informnation + * needed to create a cdevsw entry, these two routines do that, rather + * than specifying it by hand. + */ void cdevsw_make(struct bdevsw *from) |