aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ray
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2001-01-07 16:31:09 +0000
committerWarner Losh <imp@FreeBSD.org>2001-01-07 16:31:09 +0000
commit486d464d74f6eae01b67011ee8b84c1e3b652c1b (patch)
tree4a06bb96014471074a2810a29a5ac795a71c6f95 /sys/dev/ray
parent568ffd8885481391ba86d3dab36e772ea2caef4a (diff)
downloadsrc-486d464d74f6eae01b67011ee8b84c1e3b652c1b.tar.gz
src-486d464d74f6eae01b67011ee8b84c1e3b652c1b.zip
o Now that I've had time to test the new interface, reintegrate it back in.
o Fix OLDCARD to use the new interface. o Rename the offsetp argument to deltap to more closely reflect what it is returning (it returns the delta from the requested value to the actual value). o Remove duplicate $FreeBSD$ in pccbb.c o Allow deltap to be NULL. o Convert new isa pcic driver and add XXX comments that this function isn't actually implemented there (which means that NEWCARD pccard stuff won't work there until it is). o Revert attempts to make old inferface work in NEWCARD. Subitted by: peter (Parts of the new version code)
Notes
Notes: svn path=/head/; revision=70748
Diffstat (limited to 'sys/dev/ray')
-rw-r--r--sys/dev/ray/if_ray.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ray/if_ray.c b/sys/dev/ray/if_ray.c
index e81cd430fe9b..7f35cb23c515 100644
--- a/sys/dev/ray/if_ray.c
+++ b/sys/dev/ray/if_ray.c
@@ -3366,7 +3366,7 @@ ray_res_alloc_am(struct ray_softc *sc)
RAY_PRINTF(sc, "fixing up AM card address from 0x%x to 0x0",
offset);
error = CARD_SET_MEMORY_OFFSET(device_get_parent(sc->dev),
- sc->dev, sc->am_rid, 0);
+ sc->dev, sc->am_rid, 0, NULL);
if (error) {
RAY_PRINTF(sc, "CARD_SET_MEMORY_OFFSET returned 0x%0x",
error);
@@ -3454,7 +3454,7 @@ ray_res_alloc_cm(struct ray_softc *sc)
RAY_PRINTF(sc, "fixing up CM card address from 0x%x to 0x0",
offset);
error = CARD_SET_MEMORY_OFFSET(device_get_parent(sc->dev),
- sc->dev, sc->cm_rid, 0);
+ sc->dev, sc->cm_rid, 0, NULL);
if (error) {
RAY_PRINTF(sc, "CARD_SET_MEMORY_OFFSET returned 0x%0x",
error);