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

staging: vt6656: rename PSbIsNextTBTTWakeUp to vnt_next_tbtt_wakeup

Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 905dba5c
......@@ -31,7 +31,7 @@
* PSbConsiderPowerDown - Decide if we can Power Down
* PSvSendPSPOLL - Send PS-POLL packet
* PSbSendNullPacket - Send Null packet
* PSbIsNextTBTTWakeUp - Decide if we need to wake up at next Beacon
* vnt_next_tbtt_wakeup - Decide if we need to wake up at next Beacon
*
* Revision History:
*
......@@ -312,7 +312,7 @@ int PSbSendNullPacket(struct vnt_private *pDevice)
*
*/
int PSbIsNextTBTTWakeUp(struct vnt_private *priv)
int vnt_next_tbtt_wakeup(struct vnt_private *priv)
{
struct vnt_manager *mgmt = &priv->vnt_mgmt;
int wake_up = false;
......
......@@ -42,6 +42,6 @@ void vnt_disable_power_saving(struct vnt_private *);
void vnt_enable_power_saving(struct vnt_private *, u16);
void PSvSendPSPOLL(struct vnt_private *);
int PSbSendNullPacket(struct vnt_private *);
int PSbIsNextTBTTWakeUp(struct vnt_private *);
int vnt_next_tbtt_wakeup(struct vnt_private *);
#endif /* __POWER_H__ */
......@@ -826,7 +826,7 @@ void vRunCommand(struct work_struct *work)
break;
case WLAN_CMD_TBTT_WAKEUP_START:
PSbIsNextTBTTWakeUp(pDevice);
vnt_next_tbtt_wakeup(pDevice);
break;
case WLAN_CMD_BECON_SEND_START:
......
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