aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2002-11-14 05:15:50 +0000
committerWarner Losh <imp@FreeBSD.org>2002-11-14 05:15:50 +0000
commitf02993557a43d32e67f8d677bb685ad0e265e2d1 (patch)
tree0c5452b2765a47da19e28ca89e9b761e2342850a /sys
parent41e6d507ba45396ff6b0688de7b5191901191fc3 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pccard/pccardvar.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/pccard/pccardvar.h b/sys/dev/pccard/pccardvar.h
index 0914f813e4bcc..84d44d5ba1345 100644
--- a/sys/dev/pccard/pccardvar.h
+++ b/sys/dev/pccard/pccardvar.h
@@ -132,8 +132,8 @@ struct pccard_function {
int number;
int function;
int last_config_index;
- u_long ccr_base;
- u_long ccr_mask;
+ uint32_t ccr_base; /* Offset with card's memory */
+ uint32_t ccr_mask;
struct resource *ccr_res;
int ccr_rid;
STAILQ_HEAD(, pccard_config_entry) cfe_head;
@@ -146,9 +146,9 @@ struct pccard_function {
#define pf_ccrt pf_pcmh.memt
#define pf_ccrh pf_pcmh.memh
#define pf_ccr_realsize pf_pcmh.realsize
- bus_addr_t pf_ccr_offset;
+ uint32_t pf_ccr_offset; /* Offset from ccr_base of CIS */
int pf_ccr_window;
- long pf_mfc_iobase;
+ long pf_mfc_iobase; /* Right type? */
long pf_mfc_iomax;
int pf_flags;
driver_intr_t *intr_handler;