aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/isa/isa_device.h
diff options
context:
space:
mode:
authorGeoff Rehmet <csgr@FreeBSD.org>1994-09-03 16:03:09 +0000
committerGeoff Rehmet <csgr@FreeBSD.org>1994-09-03 16:03:09 +0000
commit006e55746d8034954bfdc681cf2eedf9fc32cd1d (patch)
tree1f61422a0efd847d91084fc3b85a225406adecd4 /sys/i386/isa/isa_device.h
parent1d1915f7d738789d99e62f71e7898472d11641ba (diff)
downloadsrc-006e55746d8034954bfdc681cf2eedf9fc32cd1d.tar.gz
src-006e55746d8034954bfdc681cf2eedf9fc32cd1d.zip
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.
Notes
Notes: svn path=/head/; revision=2476
Diffstat (limited to 'sys/i386/isa/isa_device.h')
-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 4b66870b54ae..31d6c5da04b0 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)*/