aboutsummaryrefslogtreecommitdiff
path: root/sys/pccard
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2001-08-14 23:34:09 +0000
committerWarner Losh <imp@FreeBSD.org>2001-08-14 23:34:09 +0000
commitdc2e861bdb526a83b270925ba1b990fc71887919 (patch)
tree3c43f20b69829885ad6dcce303db7924efec9307 /sys/pccard
parenta547ba9cce7b0d21ec145cdc6834dacebb9233fa (diff)
downloadsrc-dc2e861bdb526a83b270925ba1b990fc71887919.tar.gz
src-dc2e861bdb526a83b270925ba1b990fc71887919.zip
Merge from stable (which seems to have been spammed at some point in current):
#ifdef the deltap pcic_set_memory_offset argument so that raylink driver works.
Notes
Notes: svn path=/head/; revision=81653
Diffstat (limited to 'sys/pccard')
-rw-r--r--sys/pccard/pcic.c9
-rw-r--r--sys/pccard/pcicvar.h6
2 files changed, 12 insertions, 3 deletions
diff --git a/sys/pccard/pcic.c b/sys/pccard/pcic.c
index f4ba817fe81c..6208bd71b9eb 100644
--- a/sys/pccard/pcic.c
+++ b/sys/pccard/pcic.c
@@ -887,15 +887,20 @@ pcic_get_res_flags(device_t bus, device_t child, int restype, int rid,
}
int
-pcic_set_memory_offset(device_t bus, device_t child, int rid, u_int32_t offset,
- u_int32_t *deltap)
+pcic_set_memory_offset(device_t bus, device_t child, int rid, u_int32_t offset
+#if __FreeBSD_version >= 500000
+ ,u_int32_t *deltap
+#endif
+ )
{
struct pccard_devinfo *devi = device_get_ivars(child);
struct mem_desc *mp = &devi->slt->mem[rid];
mp->card = offset;
+#if __FreeBSD_version >= 500000
if (deltap)
*deltap = 0; /* XXX BAD XXX */
+#endif
return (pcic_memory(devi->slt, rid));
}
diff --git a/sys/pccard/pcicvar.h b/sys/pccard/pcicvar.h
index bd591e763f5d..185e9a7652c0 100644
--- a/sys/pccard/pcicvar.h
+++ b/sys/pccard/pcicvar.h
@@ -92,7 +92,11 @@ driver_intr_t pcic_isa_intr;
int pcic_isa_intr1(void *);
void pcic_putb_io(struct pcic_slot *sp, int reg, unsigned char val);
int pcic_set_memory_offset(device_t bus, device_t child, int rid,
- u_int32_t offset, u_int32_t *deltap);
+ u_int32_t offset
+#if __FreeBSD_version >= 500000
+ , u_int32_t *deltap
+#endif
+ );
int pcic_set_res_flags(device_t bus, device_t child, int restype, int rid,
u_long value);
void pcic_setb(struct pcic_slot *sp, int reg, unsigned char mask);