summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/dev/mse/mse.c6
-rw-r--r--sys/i386/isa/mse.c6
2 files changed, 8 insertions, 4 deletions
diff --git a/sys/dev/mse/mse.c b/sys/dev/mse/mse.c
index efa306500403..b3d665369d8e 100644
--- a/sys/dev/mse/mse.c
+++ b/sys/dev/mse/mse.c
@@ -11,7 +11,7 @@
* this software for any purpose. It is provided "as is"
* without express or implied warranty.
*
- * $Id: mse.c,v 1.24 1995/12/15 00:54:25 bde Exp $
+ * $Id: mse.c,v 1.25 1996/03/28 14:28:46 scrappy Exp $
*/
/*
* Driver for the Logitech and ATI Inport Bus mice for use with 386bsd and
@@ -60,6 +60,7 @@
#endif /*DEVFS*/
#include <machine/clock.h>
+#include <machine/cpu.h>
#include <i386/isa/isa_device.h>
#include <i386/isa/icu.h>
@@ -476,7 +477,8 @@ mse_probelogi(idp)
outb(idp->id_iobase + MSE_PORTC, MSE_DISINTR);
return(1);
} else {
- printf("mse%d: wrong signature %x\n",idp->id_unit,sig);
+ if (bootverbose)
+ printf("mse%d: wrong signature %x\n",idp->id_unit,sig);
return(0);
}
}
diff --git a/sys/i386/isa/mse.c b/sys/i386/isa/mse.c
index efa306500403..b3d665369d8e 100644
--- a/sys/i386/isa/mse.c
+++ b/sys/i386/isa/mse.c
@@ -11,7 +11,7 @@
* this software for any purpose. It is provided "as is"
* without express or implied warranty.
*
- * $Id: mse.c,v 1.24 1995/12/15 00:54:25 bde Exp $
+ * $Id: mse.c,v 1.25 1996/03/28 14:28:46 scrappy Exp $
*/
/*
* Driver for the Logitech and ATI Inport Bus mice for use with 386bsd and
@@ -60,6 +60,7 @@
#endif /*DEVFS*/
#include <machine/clock.h>
+#include <machine/cpu.h>
#include <i386/isa/isa_device.h>
#include <i386/isa/icu.h>
@@ -476,7 +477,8 @@ mse_probelogi(idp)
outb(idp->id_iobase + MSE_PORTC, MSE_DISINTR);
return(1);
} else {
- printf("mse%d: wrong signature %x\n",idp->id_unit,sig);
+ if (bootverbose)
+ printf("mse%d: wrong signature %x\n",idp->id_unit,sig);
return(0);
}
}