Commit 8a5e6c8c authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: rename CARDbRadioPowerOn to vnt_radio_power_on

Drop card and rename to vnt_radio_power_on
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fa26e0bd
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
* vnt_reset_next_tbtt - Set NIC Beacon time * vnt_reset_next_tbtt - Set NIC Beacon time
* vnt_update_next_tbtt - Sync. NIC Beacon time * vnt_update_next_tbtt - Sync. NIC Beacon time
* vnt_radio_power_off - Turn Off NIC Radio Power * vnt_radio_power_off - Turn Off NIC Radio Power
* CARDbRadioPowerOn - Turn On NIC Radio Power * vnt_radio_power_on - Turn On NIC Radio Power
* CARDbSetWEPMode - Set NIC Wep mode * CARDbSetWEPMode - Set NIC Wep mode
* CARDbSetTxPower - Set NIC tx power * CARDbSetTxPower - Set NIC tx power
* *
...@@ -801,7 +801,7 @@ int vnt_radio_power_off(struct vnt_private *priv) ...@@ -801,7 +801,7 @@ int vnt_radio_power_off(struct vnt_private *priv)
* Return Value: true if success; otherwise false * Return Value: true if success; otherwise false
* *
*/ */
int CARDbRadioPowerOn(struct vnt_private *priv) int vnt_radio_power_on(struct vnt_private *priv)
{ {
int ret = true; int ret = true;
......
...@@ -59,7 +59,7 @@ void vnt_update_next_tbtt(struct vnt_private *, u64, u16); ...@@ -59,7 +59,7 @@ void vnt_update_next_tbtt(struct vnt_private *, u64, u16);
u64 vnt_get_next_tbtt(u64, u16); u64 vnt_get_next_tbtt(u64, u16);
u64 vnt_get_tsf_offset(u8 byRxRate, u64 qwTSF1, u64 qwTSF2); u64 vnt_get_tsf_offset(u8 byRxRate, u64 qwTSF1, u64 qwTSF2);
int vnt_radio_power_off(struct vnt_private *); int vnt_radio_power_off(struct vnt_private *);
int CARDbRadioPowerOn(struct vnt_private *pDevice); int vnt_radio_power_on(struct vnt_private *);
u8 vnt_get_pkt_type(struct vnt_private *); u8 vnt_get_pkt_type(struct vnt_private *);
void CARDvSetBSSMode(struct vnt_private *pDevice); void CARDvSetBSSMode(struct vnt_private *pDevice);
......
...@@ -562,7 +562,7 @@ static int device_init_registers(struct vnt_private *pDevice) ...@@ -562,7 +562,7 @@ static int device_init_registers(struct vnt_private *pDevice)
(pDevice->bRadioControlOff == true)) { (pDevice->bRadioControlOff == true)) {
vnt_radio_power_off(pDevice); vnt_radio_power_off(pDevice);
} else { } else {
CARDbRadioPowerOn(pDevice); vnt_radio_power_on(pDevice);
} }
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"<----INIbInitAdapter Exit\n"); DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"<----INIbInitAdapter Exit\n");
......
...@@ -807,7 +807,7 @@ void vRunCommand(struct work_struct *work) ...@@ -807,7 +807,7 @@ void vRunCommand(struct work_struct *work)
} else { } else {
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO" WLAN_CMD_RADIO_START_ON........................\n"); DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO" WLAN_CMD_RADIO_START_ON........................\n");
pDevice->bHWRadioOff = false; pDevice->bHWRadioOff = false;
CARDbRadioPowerOn(pDevice); vnt_radio_power_on(pDevice);
MACvRegBitsOff(pDevice, MAC_REG_GPIOCTL1, GPIO3_INTMD); MACvRegBitsOff(pDevice, MAC_REG_GPIOCTL1, GPIO3_INTMD);
vnt_mac_set_led(pDevice, LEDSTS_STS, LEDSTS_ON); vnt_mac_set_led(pDevice, LEDSTS_STS, LEDSTS_ON);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment