Subject: Re: PnP support (was Re: New 3Com 3c509 drivers)
To: Shawn Hsiao <shawn@hercules.secc.fju.edu.tw>
From: Sujal Patel <smpatel@umiacs.umd.edu>
List: port-i386
Date: 06/20/1996 22:09:02
On Wed, 19 Jun 1996, Shawn Hsiao wrote:

> If you are interested in this, you can find it by
>
>     http://hercules.secc.fju.edu.tw/~shawn/ISA_PnP_NetBSD.Jun19.tar.gz

There is one critical bug-fix that didn't make the May 5 snapshot.  In
pnp_isa.c you need to change:

#define SEND(d, r)     outb (ADDRESS, d); outb (WRITE_DATA, r);

to

#define SEND(d, r)     { outb (ADDRESS, d); outb (WRITE_DATA, r); }


Sujal