diff options
author | peter <peter@FreeBSD.org> | 1999-04-19 19:39:08 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-04-19 19:39:08 +0000 |
commit | 336f21c48d4a9d49acfca62d6854de4f81f1d635 (patch) | |
tree | 059753f543947eb33d695b7954f618d4a867311a /sys/kern/subr_bus.c | |
parent | 3ee4dda73412b0c83f814bf29f7771359e634fc7 (diff) | |
download | FreeBSD-src-336f21c48d4a9d49acfca62d6854de4f81f1d635.zip FreeBSD-src-336f21c48d4a9d49acfca62d6854de4f81f1d635.tar.gz |
GC some stray debugging printf()s...
Diffstat (limited to 'sys/kern/subr_bus.c')
-rw-r--r-- | sys/kern/subr_bus.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/kern/subr_bus.c b/sys/kern/subr_bus.c index 339ef32..e629f98 100644 --- a/sys/kern/subr_bus.c +++ b/sys/kern/subr_bus.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: subr_bus.c,v 1.16 1999/03/29 08:54:20 dfr Exp $ + * $Id: subr_bus.c,v 1.17 1999/04/16 21:22:39 peter Exp $ */ #include <sys/param.h> @@ -1435,7 +1435,6 @@ resource_set_int(int i, char *resname, int value) int error; struct config_resource *res; -printf("resource_set_int\n"); if (i < 0 || i >= devtab_count) return EINVAL; error = resource_create(devtab[i].name, devtab[i].unit, resname, @@ -1454,7 +1453,6 @@ resource_set_long(int i, char *resname, long value) int error; struct config_resource *res; -printf("resource_set_long\n"); if (i < 0 || i >= devtab_count) return EINVAL; error = resource_create(devtab[i].name, devtab[i].unit, resname, @@ -1473,7 +1471,6 @@ resource_set_string(int i, char *resname, char *value) int error; struct config_resource *res; -printf("resource_set_string\n"); if (i < 0 || i >= devtab_count) return EINVAL; error = resource_create(devtab[i].name, devtab[i].unit, resname, |