diff options
author | jkh <jkh@FreeBSD.org> | 1997-05-01 06:09:01 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1997-05-01 06:09:01 +0000 |
commit | ee514a2ef805dc75f685e22c001dc90cf76db411 (patch) | |
tree | 2f5aa2c9c0fc95a93d51611874e89e7317f657fb /sys/modules/ibcs2 | |
parent | 0784aa40b9fa90a404386ec23faa52d01ff20b02 (diff) | |
download | FreeBSD-src-ee514a2ef805dc75f685e22c001dc90cf76db411.zip FreeBSD-src-ee514a2ef805dc75f685e22c001dc90cf76db411.tar.gz |
Also quiet down the ibcs2 startup (same reason as linux lkm - it screws
the console output).
Diffstat (limited to 'sys/modules/ibcs2')
-rw-r--r-- | sys/modules/ibcs2/ibcs2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/ibcs2/ibcs2.c b/sys/modules/ibcs2/ibcs2.c index 49506c9..edc712e 100644 --- a/sys/modules/ibcs2/ibcs2.c +++ b/sys/modules/ibcs2/ibcs2.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: ibcs2.c,v 1.9 1997/02/22 12:48:01 peter Exp $ + * $Id: ibcs2.c,v 1.10 1997/04/06 10:47:52 dufault Exp $ */ #include <sys/param.h> @@ -41,7 +41,7 @@ MOD_MISC(ibcs2); static int ibcs2_load(struct lkm_table *lkmtp, int cmd) { - uprintf("ibcs2 emulator installed\n"); + /* uprintf("ibcs2 emulator installed\n"); XXX - shut up, you! */ return 0; } |