diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-03-01 22:43:00 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-03-01 22:43:00 +0000 |
commit | 0d7e7e791f8519f6f1796ebbf983fb9fc148e3dc (patch) | |
tree | 55eb4f7839b517c42b0df8285453607c0e571624 /sys/dev/pcmcia/pcmciavar.h | |
parent | 610eb1c7f44940e4216929754047de049ad3fe06 (diff) |
Corrected ISA memory mapping errors that caused PCMCIA to be broken.
Thanks to Angelos who helped my debug this.
Diffstat (limited to 'sys/dev/pcmcia/pcmciavar.h')
-rw-r--r-- | sys/dev/pcmcia/pcmciavar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pcmcia/pcmciavar.h b/sys/dev/pcmcia/pcmciavar.h index 28c2a4375ce..6260b30d41d 100644 --- a/sys/dev/pcmcia/pcmciavar.h +++ b/sys/dev/pcmcia/pcmciavar.h @@ -1,4 +1,4 @@ -/* $Id: pcmciavar.h,v 1.3 1996/11/28 23:28:17 niklas Exp $ */ +/* $Id: pcmciavar.h,v 1.4 1997/03/01 22:42:59 niklas Exp $ */ /* * Copyright (c) 1995,1996 John T. Kohl. All rights reserved. * Copyright (c) 1993, 1994 Stefan Grefen. All rights reserved. @@ -292,6 +292,7 @@ struct pcmcia_attach_args { struct pcmciabus_attach_args { bus_space_tag_t pba_iot; bus_space_tag_t pba_memt; + bus_space_tag_t pba_memh; int pba_maddr; int pba_msize; void *pba_aux; /* driver specific */ |