From 8a86fd47bef7963df7c5fe5a9255ea17b4eb31b1 Mon Sep 17 00:00:00 2001 From: thorpej Date: Thu, 26 Mar 1998 06:35:27 +0000 Subject: [PATCH] It's Just Wrong to configure a KN02 system slot as an IOCTL ASIC, but since it's currently done that way, nuke the gratuitous printf that reports the behavior. --- sys/arch/pmax/tc/asic.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sys/arch/pmax/tc/asic.c b/sys/arch/pmax/tc/asic.c index 2797f31232e3..77eeb28717b6 100644 --- a/sys/arch/pmax/tc/asic.c +++ b/sys/arch/pmax/tc/asic.c @@ -1,4 +1,4 @@ -/* $NetBSD: asic.c,v 1.25 1998/03/25 06:22:20 jonathan Exp $ */ +/* $NetBSD: asic.c,v 1.26 1998/03/26 06:35:27 thorpej Exp $ */ /* * Copyright (c) 1994, 1995 Carnegie-Mellon University. @@ -128,9 +128,15 @@ asicmatch(parent, cf, aux) return (0); #endif + + /* + * XXX This is wrong. + */ /* The 3MAX (kn02) is special. */ if (TC_BUS_MATCHNAME(ta, KN02_ASIC_NAME)) { +#if 0 printf("(configuring KN02 system slot as asic)\n"); +#endif goto gotasic; }