summaryrefslogtreecommitdiffstats
path: root/sys/dev/pccard
diff options
context:
space:
mode:
authorjake <jake@FreeBSD.org>2000-05-26 02:09:24 +0000
committerjake <jake@FreeBSD.org>2000-05-26 02:09:24 +0000
commit961b97d43458f3c57241940cabebb3bedf7e4c00 (patch)
tree6014972d9b90b4e3a8b20dbea641a88cf6355c13 /sys/dev/pccard
parent06b64672180d9b04ae6d35db819c854df3c3c684 (diff)
downloadFreeBSD-src-961b97d43458f3c57241940cabebb3bedf7e4c00.zip
FreeBSD-src-961b97d43458f3c57241940cabebb3bedf7e4c00.tar.gz
Back out the previous change to the queue(3) interface.
It was not discussed and should probably not happen. Requested by: msmith and others
Diffstat (limited to 'sys/dev/pccard')
-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 58398c4..19e9434 100644
--- a/sys/dev/pccard/pccardvar.h
+++ b/sys/dev/pccard/pccardvar.h
@@ -103,7 +103,7 @@ struct pccard_config_entry {
u_long hostaddr;
} memspace[2]; /* XXX this could be as high as 8 */
int maxtwins;
- STAILQ_ENTRY(struct pccard_config_entry) cfe_list;
+ STAILQ_ENTRY(pccard_config_entry) cfe_list;
};
struct pccard_function {
@@ -115,8 +115,8 @@ struct pccard_function {
u_long ccr_mask;
struct resource *ccr_res;
int ccr_rid;
- STAILQ_HEAD(, struct pccard_config_entry) cfe_head;
- STAILQ_ENTRY(struct pccard_function) pf_list;
+ STAILQ_HEAD(, pccard_config_entry) cfe_head;
+ STAILQ_ENTRY(pccard_function) pf_list;
/* run-time state */
struct pccard_softc *sc;
struct pccard_config_entry *cfe;
@@ -154,7 +154,7 @@ struct pccard_card {
#define PCCARD_PRODUCT_INVALID -1
u_int16_t error;
#define PCCARD_CIS_INVALID { NULL, NULL, NULL, NULL }
- STAILQ_HEAD(, struct pccard_function) pf_head;
+ STAILQ_HEAD(, pccard_function) pf_head;
};
#define PCCARD_MEM_ATTR 1
OpenPOWER on IntegriCloud