diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-03 04:48:02 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-03 04:48:02 +0000 |
commit | bf89224bb30aa7a4d88082a4aeab7fb48c90e8ce (patch) | |
tree | 778f1846f7d7e6b688b3aac6168e3c1bb083e4f9 | |
parent | 1f877619e1c49df3b8868deb9b5aef21d24018d5 (diff) |
Set ia_iosize to 0 to keep probe silent
-rw-r--r-- | sys/arch/i386/isa/spkr.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/arch/i386/isa/spkr.c b/sys/arch/i386/isa/spkr.c index fe0b8dab895..6e97fcefea8 100644 --- a/sys/arch/i386/isa/spkr.c +++ b/sys/arch/i386/isa/spkr.c @@ -412,6 +412,9 @@ static struct buf *spkr_inbuf; /* incoming buf */ int spkrprobe (struct device *parent, void *match, void *aux) { + struct isa_attach_args *ia = aux; + + ia->ia_iosize = 0; return 1; } |