1
0
Fork 0

Staging: rtl8187se: fix if statement

I removed a misplace semicolon.  It is clear from the indentation that
TxPwrTracking87SE() was only supposed to be called if CheckTxPwrTracking()
returned true.

Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
hifive-unleashed-5.1
Dan Carpenter 2010-01-18 14:23:20 +03:00 committed by Greg Kroah-Hartman
parent c22202faad
commit cffd4e16cd
1 changed files with 1 additions and 1 deletions

View File

@ -2566,7 +2566,7 @@ void watch_dog_adaptive(unsigned long data)
// Tx Power Tracking on 87SE.
#ifdef TX_TRACK
//if( priv->bTxPowerTrack ) //lzm mod 080826
if( CheckTxPwrTracking((struct net_device *)data));
if (CheckTxPwrTracking((struct net_device *)data))
TxPwrTracking87SE((struct net_device *)data);
#endif