staging: wilc1000: rename functions starting with TimerCB_ to avoid camelCase
authorAjay Singh <ajay.kathat@microchip.com>
Mon, 19 Feb 2018 15:29:40 +0000 (20:59 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 19 Feb 2018 17:12:53 +0000 (18:12 +0100)
Fix "Avoid camelCase" issues found by checkpatch.pl script.

Signed-off-by: Ajay Singh <ajay.kathat@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.c

index b861c95886d220072e122209c810c0d4850e979d..6e39766c788aedc5ab4b21be4001fd995b126453 100644 (file)
@@ -2647,7 +2647,7 @@ free_msg:
        complete(&hif_thread_comp);
 }
 
-static void TimerCB_Scan(struct timer_list *t)
+static void timer_scan_cb(struct timer_list *t)
 {
        struct host_if_drv *hif_drv = from_timer(hif_drv, t, scan_timer);
        struct wilc_vif *vif = hif_drv->scan_timer_vif;
@@ -2660,7 +2660,7 @@ static void TimerCB_Scan(struct timer_list *t)
        wilc_enqueue_cmd(&msg);
 }
 
-static void TimerCB_Connect(struct timer_list *t)
+static void timer_connect_cb(struct timer_list *t)
 {
        struct host_if_drv *hif_drv = from_timer(hif_drv, t,
                                                      connect_timer);
@@ -3385,8 +3385,8 @@ int wilc_init(struct net_device *dev, struct host_if_drv **hif_drv_handler)
                mod_timer(&periodic_rssi, jiffies + msecs_to_jiffies(5000));
        }
 
-       timer_setup(&hif_drv->scan_timer, TimerCB_Scan, 0);
-       timer_setup(&hif_drv->connect_timer, TimerCB_Connect, 0);
+       timer_setup(&hif_drv->scan_timer, timer_scan_cb, 0);
+       timer_setup(&hif_drv->connect_timer, timer_connect_cb, 0);
        timer_setup(&hif_drv->remain_on_ch_timer, ListenTimerCB, 0);
 
        mutex_init(&hif_drv->cfg_values_lock);