summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcsgr <csgr@FreeBSD.org>1994-09-03 16:03:09 +0000
committercsgr <csgr@FreeBSD.org>1994-09-03 16:03:09 +0000
commit570c3ecb109c0097f96e904aa674bf1a00bb9575 (patch)
tree1f61422a0efd847d91084fc3b85a225406adecd4
parentb0e049ac40c04f5688494b16e78fda185d6b4569 (diff)
downloadFreeBSD-src-570c3ecb109c0097f96e904aa674bf1a00bb9575.zip
FreeBSD-src-570c3ecb109c0097f96e904aa674bf1a00bb9575.tar.gz
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.
-rw-r--r--sys/i386/isa/isa_device.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/isa/isa_device.h b/sys/i386/isa/isa_device.h
index 4b66870..31d6c5d 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)*/
OpenPOWER on IntegriCloud