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>
This commit is contained in:
parent
c22202faad
commit
cffd4e16cd
@ -2566,7 +2566,7 @@ void watch_dog_adaptive(unsigned long data)
|
|||||||
// Tx Power Tracking on 87SE.
|
// Tx Power Tracking on 87SE.
|
||||||
#ifdef TX_TRACK
|
#ifdef TX_TRACK
|
||||||
//if( priv->bTxPowerTrack ) //lzm mod 080826
|
//if( priv->bTxPowerTrack ) //lzm mod 080826
|
||||||
if( CheckTxPwrTracking((struct net_device *)data));
|
if (CheckTxPwrTracking((struct net_device *)data))
|
||||||
TxPwrTracking87SE((struct net_device *)data);
|
TxPwrTracking87SE((struct net_device *)data);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user