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>
This commit is contained in:
Thomas Tsou 2012-03-17 17:49:03 -04:00 committed by Alexander Chemeris
parent ca5d35cce8
commit 5a37840dfa
2 changed files with 1 additions and 7 deletions

View File

@ -209,11 +209,7 @@ DriveLoop::CorrType DriveLoop::expectedCorrType(int channel, GSM::Time currTime)
break;
}
}
void DriveLoop::reset()
{
}
void DriveLoop::driveReceiveFIFO()
{
SoftVector *rxBurst = NULL;

View File

@ -172,8 +172,6 @@ protected:
friend void *RadioDriveLoopAdapter(DriveLoop *);
void reset();
/** set priority on current thread */
void setPriority() { mRadioInterface->setPriority(); }