From 006e55746d8034954bfdc681cf2eedf9fc32cd1d Mon Sep 17 00:00:00 2001 From: Geoff Rehmet Date: Sat, 3 Sep 1994 16:03:09 +0000 Subject: [PATCH] make id_iobase an int - the change to a u_short broke lpt, which uses port? (which results in id_iobase == -1) Submitted by: Geoff. --- sys/i386/isa/isa_device.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/i386/isa/isa_device.h b/sys/i386/isa/isa_device.h index 4b66870b54a..31d6c5da04b 100644 --- a/sys/i386/isa/isa_device.h +++ b/sys/i386/isa/isa_device.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)isa_device.h 7.1 (Berkeley) 5/9/91 - * $Id: isa_device.h,v 1.8 1994/08/22 15:58:40 bde Exp $ + * $Id: isa_device.h,v 1.9 1994/09/02 22:13:34 ats Exp $ */ #ifndef _I386_ISA_ISA_DEVICE_H_ @@ -61,7 +61,7 @@ typedef void inthand2_t __P((int unit)); struct isa_device { int id_id; /* device id */ struct isa_driver *id_driver; - u_short id_iobase; /* base i/o address */ + int id_iobase; /* base i/o address */ u_short id_irq; /* interrupt request */ short id_drq; /* DMA request */ caddr_t id_maddr; /* physical i/o memory address on bus (if any)*/