From: tholo Date: Sun, 3 Mar 1996 04:48:01 +0000 (+0000) Subject: Set ia_iosize to 0 to keep probe silent X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=4190f85515302b8a76c1517f34e25d1256b91416;p=openbsd Set ia_iosize to 0 to keep probe silent --- 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; }