Commit 1aae9398 authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman

staging: wilc1000: rename RemainOnChanReady in wilc_remain_on_channel

This patch renames RemainOnChanReady to ready to avoid camelcase.
Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 95bfdd58
...@@ -4064,7 +4064,7 @@ void wilc_scan_complete_received(struct wilc *wilc, u8 *pu8Buffer, ...@@ -4064,7 +4064,7 @@ void wilc_scan_complete_received(struct wilc *wilc, u8 *pu8Buffer,
int wilc_remain_on_channel(struct wilc_vif *vif, u32 session_id, int wilc_remain_on_channel(struct wilc_vif *vif, u32 session_id,
u32 duration, u16 chan, u32 duration, u16 chan,
wilc_remain_on_chan_expired expired, wilc_remain_on_chan_expired expired,
wilc_remain_on_chan_ready RemainOnChanReady, wilc_remain_on_chan_ready ready,
void *pvUserArg) void *pvUserArg)
{ {
int result = 0; int result = 0;
...@@ -4081,7 +4081,7 @@ int wilc_remain_on_channel(struct wilc_vif *vif, u32 session_id, ...@@ -4081,7 +4081,7 @@ int wilc_remain_on_channel(struct wilc_vif *vif, u32 session_id,
msg.id = HOST_IF_MSG_REMAIN_ON_CHAN; msg.id = HOST_IF_MSG_REMAIN_ON_CHAN;
msg.body.remain_on_ch.ch = chan; msg.body.remain_on_ch.ch = chan;
msg.body.remain_on_ch.expired = expired; msg.body.remain_on_ch.expired = expired;
msg.body.remain_on_ch.ready = RemainOnChanReady; msg.body.remain_on_ch.ready = ready;
msg.body.remain_on_ch.arg = pvUserArg; msg.body.remain_on_ch.arg = pvUserArg;
msg.body.remain_on_ch.duration = duration; msg.body.remain_on_ch.duration = duration;
msg.body.remain_on_ch.id = session_id; msg.body.remain_on_ch.id = session_id;
......
...@@ -359,7 +359,7 @@ s32 wilc_del_all_rx_ba_session(struct wilc_vif *vif, char *pBSSID, char TID); ...@@ -359,7 +359,7 @@ s32 wilc_del_all_rx_ba_session(struct wilc_vif *vif, char *pBSSID, char TID);
int wilc_remain_on_channel(struct wilc_vif *vif, u32 session_id, int wilc_remain_on_channel(struct wilc_vif *vif, u32 session_id,
u32 duration, u16 chan, u32 duration, u16 chan,
wilc_remain_on_chan_expired expired, wilc_remain_on_chan_expired expired,
wilc_remain_on_chan_ready RemainOnChanReady, wilc_remain_on_chan_ready ready,
void *pvUserArg); void *pvUserArg);
int wilc_listen_state_expired(struct wilc_vif *vif, u32 session_id); int wilc_listen_state_expired(struct wilc_vif *vif, u32 session_id);
int wilc_frame_register(struct wilc_vif *vif, u16 frame_type, bool reg); int wilc_frame_register(struct wilc_vif *vif, u16 frame_type, bool reg);
......
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