diff options
author | phk <phk@FreeBSD.org> | 2003-04-13 15:27:49 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-04-13 15:27:49 +0000 |
commit | bf262ea8a822fee81fa6a65d2d2eacb0f9702c5e (patch) | |
tree | 992fcca2f01e8d36f01430d7e18a08a628be069d /sys/kern/kern_conf.c | |
parent | a501663ce7aaccbcc90462b8c47b8fa5c01a0353 (diff) | |
download | FreeBSD-src-bf262ea8a822fee81fa6a65d2d2eacb0f9702c5e.zip FreeBSD-src-bf262ea8a822fee81fa6a65d2d2eacb0f9702c5e.tar.gz |
Since dynamic allocation of device major numbers so far have not
resulted in any earthquakes, civil wars or early onset hair-loss,
I think we can do without the printf announcing the assigned number.
Diffstat (limited to 'sys/kern/kern_conf.c')
-rw-r--r-- | sys/kern/kern_conf.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/kern/kern_conf.c b/sys/kern/kern_conf.c index 2f06fa6..d3e150a 100644 --- a/sys/kern/kern_conf.c +++ b/sys/kern/kern_conf.c @@ -291,7 +291,6 @@ make_dev(struct cdevsw *devsw, int minor, uid_t uid, gid_t gid, int perms, const if (reserved_majors[i] != i) break; KASSERT(i > 0, ("Out of major numbers (%s)", devsw->d_name)); - printf("Allocating major#%d to \"%s\"\n", i, devsw->d_name); devsw->d_maj = i; reserved_majors[i] = i; } else { |