Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 95bfdd58 authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: rename RemainOnChanExpired in wilc_remain_on_channel



This patch renames RemainOnChanExpired to expired to avoid camelcase.

Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d44cd45e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4063,7 +4063,7 @@ void wilc_scan_complete_received(struct wilc *wilc, u8 *pu8Buffer,

int wilc_remain_on_channel(struct wilc_vif *vif, u32 session_id,
			   u32 duration, u16 chan,
			   wilc_remain_on_chan_expired RemainOnChanExpired,
			   wilc_remain_on_chan_expired expired,
			   wilc_remain_on_chan_ready RemainOnChanReady,
			   void *pvUserArg)
{
@@ -4080,7 +4080,7 @@ int wilc_remain_on_channel(struct wilc_vif *vif, u32 session_id,

	msg.id = HOST_IF_MSG_REMAIN_ON_CHAN;
	msg.body.remain_on_ch.ch = chan;
	msg.body.remain_on_ch.expired = RemainOnChanExpired;
	msg.body.remain_on_ch.expired = expired;
	msg.body.remain_on_ch.ready = RemainOnChanReady;
	msg.body.remain_on_ch.arg = pvUserArg;
	msg.body.remain_on_ch.duration = duration;
+1 −1
Original line number Diff line number Diff line
@@ -358,7 +358,7 @@ 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 session_id,
			   u32 duration, u16 chan,
			   wilc_remain_on_chan_expired RemainOnChanExpired,
			   wilc_remain_on_chan_expired expired,
			   wilc_remain_on_chan_ready RemainOnChanReady,
			   void *pvUserArg);
int wilc_listen_state_expired(struct wilc_vif *vif, u32 session_id);