aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Tsou <ttsou@vt.edu>2012-03-17 17:49:03 -0400
committerAlexander Chemeris <Alexander.Chemeris@gmail.com>2013-06-24 01:51:02 +0400
commit5a37840dfa2a0c02fcb3784afd6969f615b27166 (patch)
tree7ab7c5107d79b6a10552031cfa4b9e0367f3ec24
parentca5d35cce8e509dfaf5da9663b5afc01f6edf133 (diff)
multi-arfcn, trx: remove unused reset() call in drive loop
This call is a remnant of the Transceiver / DriveLoop split. The empty call is never used. Signed-off-by: Thomas Tsou <ttsou@vt.edu>
-rw-r--r--Transceiver52M/DriveLoop.cpp6
-rw-r--r--Transceiver52M/DriveLoop.h2
2 files changed, 1 insertions, 7 deletions
diff --git a/Transceiver52M/DriveLoop.cpp b/Transceiver52M/DriveLoop.cpp
index 997d009..c080c12 100644
--- a/Transceiver52M/DriveLoop.cpp
+++ b/Transceiver52M/DriveLoop.cpp
@@ -209,11 +209,7 @@ DriveLoop::CorrType DriveLoop::expectedCorrType(int channel, GSM::Time currTime)
break;
}
}
-
-void DriveLoop::reset()
-{
-}
-
+
void DriveLoop::driveReceiveFIFO()
{
SoftVector *rxBurst = NULL;
diff --git a/Transceiver52M/DriveLoop.h b/Transceiver52M/DriveLoop.h
index 7a59caa..8c58296 100644
--- a/Transceiver52M/DriveLoop.h
+++ b/Transceiver52M/DriveLoop.h
@@ -172,8 +172,6 @@ protected:
friend void *RadioDriveLoopAdapter(DriveLoop *);
- void reset();
-
/** set priority on current thread */
void setPriority() { mRadioInterface->setPriority(); }