staging: rtl8192e: Rename PHY_ScanOperationBackup8192

Use naming schema found in other rtlwifi devices.
Rename PHY_ScanOperationBackup8192 to rtl92e_scan_op_backup.

Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Mateusz Kulikowski 2015-07-19 19:27:43 +02:00 committed by Greg Kroah-Hartman
parent dfb7a12773
commit 9a44c6e673
3 changed files with 3 additions and 3 deletions
drivers/staging/rtl8192e/rtl8192e

View File

@ -1611,7 +1611,7 @@ bool SetRFPowerState(struct net_device *dev,
return bResult;
}
void PHY_ScanOperationBackup8192(struct net_device *dev, u8 Operation)
void rtl92e_scan_op_backup(struct net_device *dev, u8 Operation)
{
struct r8192_priv *priv = rtllib_priv(dev);

View File

@ -106,6 +106,6 @@ SetRFPowerState(
);
#define PHY_SetRFPowerState SetRFPowerState
extern void PHY_ScanOperationBackup8192(struct net_device *dev, u8 Operation);
extern void rtl92e_scan_op_backup(struct net_device *dev, u8 Operation);
#endif

View File

@ -900,7 +900,7 @@ static void rtl8192_init_priv_handler(struct net_device *dev)
priv->rtllib->LedControlHandler = NULL;
priv->rtllib->UpdateBeaconInterruptHandler = NULL;
priv->rtllib->ScanOperationBackupHandler = PHY_ScanOperationBackup8192;
priv->rtllib->ScanOperationBackupHandler = rtl92e_scan_op_backup;
}
static void rtl8192_init_priv_constant(struct net_device *dev)