diff options
author | Alexandr Shadchin <shadchin@cvs.openbsd.org> | 2014-07-07 18:20:16 +0000 |
---|---|---|
committer | Alexandr Shadchin <shadchin@cvs.openbsd.org> | 2014-07-07 18:20:16 +0000 |
commit | 46102ea5b1aea0f765a2f7565212f0c0da75ae4e (patch) | |
tree | 57bc1342c989fdfdd3059de87d0f8cfc679a3ae5 | |
parent | 9bd513215fe9094e683de9166a3a25f81fb82587 (diff) |
Don't print warnings for mouse interrupts on bsd.rd
request and ok deraadt
-rw-r--r-- | sys/dev/ic/pckbc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/pckbc.c b/sys/dev/ic/pckbc.c index fd28aa08944..6d4ebe6b1f7 100644 --- a/sys/dev/ic/pckbc.c +++ b/sys/dev/ic/pckbc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pckbc.c,v 1.37 2013/09/24 08:33:50 mpi Exp $ */ +/* $OpenBSD: pckbc.c,v 1.38 2014/07/07 18:20:15 shadchin Exp $ */ /* $NetBSD: pckbc.c,v 1.5 2000/06/09 04:58:35 soda Exp $ */ /* @@ -992,7 +992,9 @@ pckbcintr_internal(struct pckbc_internal *t, struct pckbc_softc *sc) if (!q) { /* XXX do something for live insertion? */ +#ifdef PCKBCDEBUG printf("pckbcintr: no dev for slot %d\n", slot); +#endif KBD_DELAY; (void) bus_space_read_1(t->t_iot, t->t_ioh_d, 0); continue; |