diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-03-31 22:37:00 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2002-03-31 22:37:00 +0000 |
| commit | 81661c94b6a5a0b3b13048741a7e219300df81a9 (patch) | |
| tree | 0962f06e2a2c422d89af486eb66e8e726fea13b7 /sys/dev/ida | |
| parent | 67cd130e592c3937634403d105c7c72ed20bd7f9 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ida')
| -rw-r--r-- | sys/dev/ida/ida_disk.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/ida/ida_disk.c b/sys/dev/ida/ida_disk.c index 0a919d121566..256b5aae7ca3 100644 --- a/sys/dev/ida/ida_disk.c +++ b/sys/dev/ida/ida_disk.c @@ -186,8 +186,12 @@ bad: } static int -idad_dump(dev_t dev) +idad_dump(dev_t dev, void *virtual, vm_offset_t physical, off_t offset, size_t length) { + + /* This needs modified to the new dump API */ + return (ENXIO); +#if 0 struct idad_softc *drv; u_int count, blkno, secsize; long blkcnt; @@ -231,6 +235,7 @@ idad_dump(dev_t dev) addr += PAGE_SIZE * dumppages; } return (0); +#endif } void |
