mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 07:34:03 -04:00
staging: wilc1000: rename u32SessionID in wilc_remain_on_channel
This patch renames u32SessionID to session_id to avoid camelcase. Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
6d6bc4003b
commit
6f7584be30
@@ -4061,7 +4061,7 @@ void wilc_scan_complete_received(struct wilc *wilc, u8 *pu8Buffer,
|
||||
return;
|
||||
}
|
||||
|
||||
int wilc_remain_on_channel(struct wilc_vif *vif, u32 u32SessionID,
|
||||
int wilc_remain_on_channel(struct wilc_vif *vif, u32 session_id,
|
||||
u32 u32duration, u16 chan,
|
||||
wilc_remain_on_chan_expired RemainOnChanExpired,
|
||||
wilc_remain_on_chan_ready RemainOnChanReady,
|
||||
@@ -4084,7 +4084,7 @@ int wilc_remain_on_channel(struct wilc_vif *vif, u32 u32SessionID,
|
||||
msg.body.remain_on_ch.ready = RemainOnChanReady;
|
||||
msg.body.remain_on_ch.arg = pvUserArg;
|
||||
msg.body.remain_on_ch.duration = u32duration;
|
||||
msg.body.remain_on_ch.id = u32SessionID;
|
||||
msg.body.remain_on_ch.id = session_id;
|
||||
msg.vif = vif;
|
||||
|
||||
result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));
|
||||
|
||||
@@ -356,7 +356,7 @@ int wilc_setup_multicast_filter(struct wilc_vif *vif, bool enabled,
|
||||
u32 count);
|
||||
int wilc_setup_ipaddress(struct wilc_vif *vif, u8 *ip_addr, u8 idx);
|
||||
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 u32SessionID,
|
||||
int wilc_remain_on_channel(struct wilc_vif *vif, u32 session_id,
|
||||
u32 u32duration, u16 chan,
|
||||
wilc_remain_on_chan_expired RemainOnChanExpired,
|
||||
wilc_remain_on_chan_ready RemainOnChanReady,
|
||||
|
||||
Reference in New Issue
Block a user