summaryrefslogtreecommitdiff
path: root/sys/dev/ic/i82365var.h
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-01-03 10:05:53 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-01-03 10:05:53 +0000
commitc927ef63f817a120fc4dac001b8575de3ba0ad74 (patch)
tree88e064c1033b76d3c50db60ae303c1467aa829e8 /sys/dev/ic/i82365var.h
parentfa79b12122e966be5518c9d5de1aa22f1b431020 (diff)
provide pcmcia IO bus mapper with list of blocks where it should
preferentially map; idea by me, code by niklas
Diffstat (limited to 'sys/dev/ic/i82365var.h')
-rw-r--r--sys/dev/ic/i82365var.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/dev/ic/i82365var.h b/sys/dev/ic/i82365var.h
index 7c96d40f90a..7c62228d87e 100644
--- a/sys/dev/ic/i82365var.h
+++ b/sys/dev/ic/i82365var.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: i82365var.h,v 1.1 1998/09/11 07:53:58 fgsch Exp $ */
+/* $OpenBSD: i82365var.h,v 1.2 1999/01/03 10:05:52 deraadt Exp $ */
/* $NetBSD: i82365var.h,v 1.4 1998/05/23 18:32:29 matt Exp $ */
/*
@@ -77,6 +77,11 @@ struct pcic_handle {
#define PCIC_NSLOTS 4
+struct pcic_ranges {
+ u_short start;
+ u_short len;
+};
+
struct pcic_softc {
struct device dev;
@@ -105,6 +110,7 @@ struct pcic_softc {
*/
bus_addr_t iobase;
bus_addr_t iosize;
+ struct pcic_ranges *ranges;
int irq;
void *ih;