diff options
author | Tobias Weingartner <weingart@cvs.openbsd.org> | 1997-07-13 22:27:05 +0000 |
---|---|---|
committer | Tobias Weingartner <weingart@cvs.openbsd.org> | 1997-07-13 22:27:05 +0000 |
commit | b19b7d5e87f3b83a4cdaf71d9faf4e48c17e5f81 (patch) | |
tree | b2a3330865cde0b31120e467b0d08d8522bac8ec /sys/dev | |
parent | adbb53361a64163fcebce85166b694cb5ae0c876 (diff) |
Get rid of pause
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/isa/isapnp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/isa/isapnp.c b/sys/dev/isa/isapnp.c index a6fe4cf7ec1..cd2bfa429ec 100644 --- a/sys/dev/isa/isapnp.c +++ b/sys/dev/isa/isapnp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isapnp.c,v 1.10 1997/07/12 23:22:01 weingart Exp $ */ +/* $OpenBSD: isapnp.c,v 1.11 1997/07/13 22:27:04 weingart Exp $ */ /* * Copyright (c) 1996, Shawn Hsiao <shawn@alpha.secc.fju.edu.tw> @@ -432,11 +432,14 @@ isapnpquery(sc, dev_id, ipa) struct isa_attach_args *tmp; int c, i, j, fail, success = 0; +/* XXX - Wait for character */ +#if 0 { char resp[10]; printf("isapnpquery? "); getsn(resp, sizeof resp); } +#endif for (card = sc->q_card.tqh_first; card; card = card->card_link.tqe_next) { for (dev = card->q_dev.tqh_first; dev; dev = dev->dev_link.tqe_next) { if (dev_id != dev->id && dev_id != dev->comp_id) |