summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorRalf Corsépius <ralf.corsepius@rtems.org>2012-10-18 15:22:58 +0200
committerRalf Corsépius <ralf.corsepius@rtems.org>2012-10-19 14:01:23 +0200
commit02687e22bd6808335765bc9ead4f6d01307e117c (patch)
treee62eba7c87e089fb3171e11785aae269a4f9f260 /c
parentRemove stray blanks. (diff)
downloadrtems-02687e22bd6808335765bc9ead4f6d01307e117c.tar.bz2
Remove unused vars 'rxdmaBase', txdmaBase.
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libcpu/bfin/network/ethernet.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/c/src/lib/libcpu/bfin/network/ethernet.c b/c/src/lib/libcpu/bfin/network/ethernet.c
index 8637e98b8c..9dc3519407 100644
--- a/c/src/lib/libcpu/bfin/network/ethernet.c
+++ b/c/src/lib/libcpu/bfin/network/ethernet.c
@@ -728,14 +728,10 @@ static void ethernetInit(void *arg) {
struct bfin_ethernetSoftc *sc;
struct ifnet *ifp;
void *ethBase;
- void *rxdmaBase;
- void *txdmaBase;
sc = arg;
ifp = &sc->arpcom.ac_if;
ethBase = sc->ethBase;
- rxdmaBase = sc->rxdmaBase;
- txdmaBase = sc->txdmaBase;
if (sc->txDaemonTid == 0) {
initializeHardware(sc);