From 02687e22bd6808335765bc9ead4f6d01307e117c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= Date: Thu, 18 Oct 2012 15:22:58 +0200 Subject: [PATCH] Remove unused vars 'rxdmaBase', txdmaBase. --- c/src/lib/libcpu/bfin/network/ethernet.c | 4 ---- 1 file changed, 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);