Commit 4189eb51 authored by Ajay Singh's avatar Ajay Singh Committed by Greg Kroah-Hartman

staging: wilc1000: rename functions starting with TimerCB_ to avoid camelCase

Fix "Avoid camelCase" issues found by checkpatch.pl script.
Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3ccff332
...@@ -2647,7 +2647,7 @@ static void host_if_work(struct work_struct *work) ...@@ -2647,7 +2647,7 @@ static void host_if_work(struct work_struct *work)
complete(&hif_thread_comp); 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 host_if_drv *hif_drv = from_timer(hif_drv, t, scan_timer);
struct wilc_vif *vif = hif_drv->scan_timer_vif; struct wilc_vif *vif = hif_drv->scan_timer_vif;
...@@ -2660,7 +2660,7 @@ static void TimerCB_Scan(struct timer_list *t) ...@@ -2660,7 +2660,7 @@ static void TimerCB_Scan(struct timer_list *t)
wilc_enqueue_cmd(&msg); 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, struct host_if_drv *hif_drv = from_timer(hif_drv, t,
connect_timer); connect_timer);
...@@ -3385,8 +3385,8 @@ int wilc_init(struct net_device *dev, struct host_if_drv **hif_drv_handler) ...@@ -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)); mod_timer(&periodic_rssi, jiffies + msecs_to_jiffies(5000));
} }
timer_setup(&hif_drv->scan_timer, TimerCB_Scan, 0); timer_setup(&hif_drv->scan_timer, timer_scan_cb, 0);
timer_setup(&hif_drv->connect_timer, TimerCB_Connect, 0); timer_setup(&hif_drv->connect_timer, timer_connect_cb, 0);
timer_setup(&hif_drv->remain_on_ch_timer, ListenTimerCB, 0); timer_setup(&hif_drv->remain_on_ch_timer, ListenTimerCB, 0);
mutex_init(&hif_drv->cfg_values_lock); mutex_init(&hif_drv->cfg_values_lock);
......
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