summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/bfin/network/ethernet.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libcpu/bfin/network/ethernet.c')
-rw-r--r--c/src/lib/libcpu/bfin/network/ethernet.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/src/lib/libcpu/bfin/network/ethernet.c b/c/src/lib/libcpu/bfin/network/ethernet.c
index 9dc3519407..873d105250 100644
--- a/c/src/lib/libcpu/bfin/network/ethernet.c
+++ b/c/src/lib/libcpu/bfin/network/ethernet.c
@@ -250,7 +250,7 @@ void bfin_ethernet_rxdma_isr(int vector) {
rxdmaBase = sc->rxdmaBase;
status = BFIN_REG16(rxdmaBase, DMA_IRQ_STATUS_OFFSET);
if (status & DMA_IRQ_STATUS_DMA_DONE)
- rtems_event_send (sc->rxDaemonTid, INTERRUPT_EVENT);
+ rtems_bsdnet_event_send (sc->rxDaemonTid, INTERRUPT_EVENT);
BFIN_REG16(rxdmaBase, DMA_IRQ_STATUS_OFFSET) = status;
}
}
@@ -266,7 +266,7 @@ void bfin_ethernet_txdma_isr(int vector) {
txdmaBase = sc->txdmaBase;
status = BFIN_REG16(txdmaBase, DMA_IRQ_STATUS_OFFSET);
if (status & DMA_IRQ_STATUS_DMA_DONE)
- rtems_event_send (sc->txDaemonTid, INTERRUPT_EVENT);
+ rtems_bsdnet_event_send (sc->txDaemonTid, INTERRUPT_EVENT);
BFIN_REG16(txdmaBase, DMA_IRQ_STATUS_OFFSET) = status;
}
}
@@ -720,7 +720,7 @@ static void ethernetStart(struct ifnet *ifp) {
sc = ifp->if_softc;
ifp->if_flags |= IFF_OACTIVE;
- rtems_event_send(sc->txDaemonTid, START_TRANSMIT_EVENT);
+ rtems_bsdnet_event_send(sc->txDaemonTid, START_TRANSMIT_EVENT);
}
/* initialize and start the device */