Quiten a noisy printf.

This commit is contained in:
ad 2007-12-01 16:07:20 +00:00
parent b276edd821
commit 2d3a70d6e4
1 changed files with 6 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rbus_machdep.c,v 1.21 2007/01/20 14:46:21 gdt Exp $ */ /* $NetBSD: rbus_machdep.c,v 1.22 2007/12/01 16:07:20 ad Exp $ */
/* /*
* Copyright (c) 1999 * Copyright (c) 1999
@ -31,7 +31,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: rbus_machdep.c,v 1.21 2007/01/20 14:46:21 gdt Exp $"); __KERNEL_RCSID(0, "$NetBSD: rbus_machdep.c,v 1.22 2007/12/01 16:07:20 ad Exp $");
#include "opt_pcibios.h" #include "opt_pcibios.h"
#include "opt_pcifixup.h" #include "opt_pcifixup.h"
@ -90,8 +90,8 @@ void
rbus_min_start_hint(size_t ram) rbus_min_start_hint(size_t ram)
{ {
#ifdef RBUS_MIN_START_FORCED #ifdef RBUS_MIN_START_FORCED
printf("rbus: rbus_min_start from config at 0x%0lx\n", rbus_min_start); aprint_debug("rbus: rbus_min_start from config at 0x%0lx\n",
rbus_min_start);
#else #else
if (ram <= 192*1024*1024UL) { if (ram <= 192*1024*1024UL) {
/* /*
@ -118,7 +118,8 @@ rbus_min_start_hint(size_t ram)
rbus_min_start = 3 * 1024 * 1024 * 1024UL; rbus_min_start = 3 * 1024 * 1024 * 1024UL;
} }
printf("rbus: rbus_min_start set to 0x%0lx\n", rbus_min_start); aprint_debug("rbus: rbus_min_start set to 0x%0lx\n",
rbus_min_start);
#endif #endif
} }