diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-02-18 23:48:21 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-02-18 23:48:21 +0000 |
commit | 4bdeee3aed11f051a0788d522035e6f1edc66a07 (patch) | |
tree | 39b32d9ee5b438ff60770ac807c6a36fa706d411 /sys/dev/hil | |
parent | 9b7c6c568f5b4ebba1b4cdaed2bd79dee16f7fa7 (diff) |
Oops, remove debug code that was not supposed to be left here
Diffstat (limited to 'sys/dev/hil')
-rw-r--r-- | sys/dev/hil/hilkbd.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/dev/hil/hilkbd.c b/sys/dev/hil/hilkbd.c index 166d8824b59..9538b57975e 100644 --- a/sys/dev/hil/hilkbd.c +++ b/sys/dev/hil/hilkbd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hilkbd.c,v 1.6 2003/02/18 02:40:51 miod Exp $ */ +/* $OpenBSD: hilkbd.c,v 1.7 2003/02/18 23:48:20 miod Exp $ */ /* * Copyright (c) 2003, Miodrag Vallat. * All rights reserved. @@ -140,11 +140,6 @@ hilkbdattach(struct device *parent, struct device *self, void *aux) /* * Interpret the identification bytes, if any */ - { - int i; - for (i = 0; i < ha->ha_infolen; i++) - printf(" %x", ha->ha_info[i]); - } if (ha->ha_infolen > 2 && (ha->ha_info[1] & HIL_IOB) != 0) { /* HILIOB_PROMPT is not always reported... */ sc->sc_numleds = (ha->ha_info[2] & HILIOB_PMASK) >> 4; |