summaryrefslogtreecommitdiffstats
path: root/sys/dev/ata
diff options
context:
space:
mode:
authorsos <sos@FreeBSD.org>2003-02-25 14:24:42 +0000
committersos <sos@FreeBSD.org>2003-02-25 14:24:42 +0000
commita7797208dc47f031e7f3b2a3b5be39ebea40f836 (patch)
tree3ee6b8ba316215de71bf546c2e98ba44d3382e96 /sys/dev/ata
parent97f9a00e9eada7e6909290a7fb4c9e31f87769a5 (diff)
downloadFreeBSD-src-a7797208dc47f031e7f3b2a3b5be39ebea40f836.zip
FreeBSD-src-a7797208dc47f031e7f3b2a3b5be39ebea40f836.tar.gz
Removed the ISA only hooks here, no longer needed..
Diffstat (limited to 'sys/dev/ata')
-rw-r--r--sys/dev/ata/ata-isa.c51
1 files changed, 0 insertions, 51 deletions
diff --git a/sys/dev/ata/ata-isa.c b/sys/dev/ata/ata-isa.c
index a8a6296..c54b537 100644
--- a/sys/dev/ata/ata-isa.c
+++ b/sys/dev/ata/ata-isa.c
@@ -106,54 +106,3 @@ static driver_t ata_isa_driver = {
};
DRIVER_MODULE(ata, isa, ata_isa_driver, ata_devclass, 0, 0);
-
-/*
- * the following is a bandaid to get ISA only setups to link,
- * since these are getting rare the ugliness is kept here
- */
-#ifdef ATA_NOPCI
-int
-ata_dmaalloc(struct ata_device *atadev)
-{
- return ENXIO;
-}
-
-void
-ata_dmafree(struct ata_device *atadev)
-{
-}
-
-void
-ata_dmafreetags(struct ata_channel *ch)
-{
-}
-
-void
-ata_dmainit(struct ata_device *atadev, int piomode, int wdmamode, int udmamode)
-{
-}
-
-int
-ata_dmasetup(struct ata_device *atadev, caddr_t data, int32_t count)
-{
- return -1;
-}
-
-int
-ata_dmastart(struct ata_device *atadev, caddr_t data, int32_t count, int dir)
-{
- return -1;
-}
-
-int
-ata_dmadone(struct ata_device *atadev)
-{
- return -1;
-}
-
-int
-ata_dmastatus(struct ata_channel *ch)
-{
- return -1;
-}
-#endif
OpenPOWER on IntegriCloud