summaryrefslogtreecommitdiff
path: root/sys/arch/vax
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2006-12-13 21:12:59 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2006-12-13 21:12:59 +0000
commit0cd3e337a9b1803d33988148e77f1b9c4b5c4d66 (patch)
treef1b07341ee7d647596e7ed8bb4d6415498a84bee /sys/arch/vax
parentf0687e966d8ccfc016ae9ff261cbcdd5e9895028 (diff)
Remove the dma_eop callback in the ncr5380 driver md attachment, it was always
doing nothing and the mi code does not use it anymore anyway. No functional change.
Diffstat (limited to 'sys/arch/vax')
-rw-r--r--sys/arch/vax/vsa/ncr.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/sys/arch/vax/vsa/ncr.c b/sys/arch/vax/vsa/ncr.c
index b5a24c1481b..fd33ad627a7 100644
--- a/sys/arch/vax/vsa/ncr.c
+++ b/sys/arch/vax/vsa/ncr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ncr.c,v 1.20 2006/11/28 23:59:45 dlg Exp $ */
+/* $OpenBSD: ncr.c,v 1.21 2006/12/13 21:12:58 miod Exp $ */
/* $NetBSD: ncr.c,v 1.32 2000/06/25 16:00:43 ragge Exp $ */
/*-
@@ -118,7 +118,6 @@ static void si_dma_free(struct ncr5380_softc *);
static void si_dma_setup(struct ncr5380_softc *);
static void si_dma_start(struct ncr5380_softc *);
static void si_dma_poll(struct ncr5380_softc *);
-static void si_dma_eop(struct ncr5380_softc *);
static void si_dma_stop(struct ncr5380_softc *);
static void si_dma_go(void *);
@@ -209,7 +208,6 @@ si_attach(parent, self, aux)
ncr_sc->sc_dma_setup = si_dma_setup;
ncr_sc->sc_dma_start = si_dma_start;
ncr_sc->sc_dma_poll = si_dma_poll;
- ncr_sc->sc_dma_eop = si_dma_eop;
ncr_sc->sc_dma_stop = si_dma_stop;
/* DMA control register offsets */
@@ -442,16 +440,6 @@ si_dma_poll(ncr_sc)
printf("si_dma_poll\n");
}
-/*
- * When?
- */
-void
-si_dma_eop(ncr_sc)
- struct ncr5380_softc *ncr_sc;
-{
- printf("si_dma_eop\n");
-}
-
void
si_dma_stop(ncr_sc)
struct ncr5380_softc *ncr_sc;