]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: wilc1000: rename RemainOnChanReady in wilc_remain_on_channel
authorChaehyun Lim <chaehyun.lim@gmail.com>
Sun, 3 Jan 2016 08:35:38 +0000 (17:35 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 3 Feb 2016 23:11:00 +0000 (15:11 -0800)
This patch renames RemainOnChanReady to ready to avoid camelcase.

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.c
drivers/staging/wilc1000/host_interface.h

index 9265328325d3ba18ebcf6451134d03cf3dd7b130..21d1e87e2db17f1ca402f1044a83a51cf2f71e59 100644 (file)
@@ -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,
                           u32 duration, u16 chan,
                           wilc_remain_on_chan_expired expired,
-                          wilc_remain_on_chan_ready RemainOnChanReady,
+                          wilc_remain_on_chan_ready ready,
                           void *pvUserArg)
 {
        int result = 0;
@@ -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.body.remain_on_ch.ch = chan;
        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.duration = duration;
        msg.body.remain_on_ch.id = session_id;
index d2ca27eb3284ae5a73f4bdf33c5fd7accf94d684..8a03055bcf5d05e0d1e519dba5daab2c065e33af 100644 (file)
@@ -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,
                           u32 duration, u16 chan,
                           wilc_remain_on_chan_expired expired,
-                          wilc_remain_on_chan_ready RemainOnChanReady,
+                          wilc_remain_on_chan_ready ready,
                           void *pvUserArg);
 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);