aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/aac
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/aac')
-rw-r--r--sys/dev/aac/aac_disk.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/aac/aac_disk.c b/sys/dev/aac/aac_disk.c
index 3dd25869a336..d76006d13fb4 100644
--- a/sys/dev/aac/aac_disk.c
+++ b/sys/dev/aac/aac_disk.c
@@ -219,8 +219,12 @@ aac_disk_strategy(struct bio *bp)
* for the controller to complete the requests.
*/
static int
-aac_disk_dump(dev_t dev)
+aac_disk_dump(dev_t dev, void *virtual, vm_offset_t physical, off_t offset, size_t length)
{
+
+ /* XXX: This needs modified for the new dump API */
+ return (ENXIO);
+#if 0
struct aac_disk *ad;
struct aac_softc *sc;
vm_offset_t addr;
@@ -290,6 +294,7 @@ retry:
}
return (0);
+#endif
}
/*