Commit 7d2b3cf7 authored by Aya Mahfouz's avatar Aya Mahfouz Committed by Greg Kroah-Hartman

staging: slicloss: replace init_timer by setup_timer

This patch replaces init_timer and the 2 step initialization of function
and data by setup_timer to make the code more concise.

The issue was discovered using the following coccinelle script:

@@
expression ds, e1, e2;
@@

-init_timer (&ds);
+setup_timer (&ds, e1, e2);
...
(
-ds.function = e1;
...
-ds.data = e2;
|
-ds.data = e2;
...
-ds.function = e1;
)
Signed-off-by: default avatarAya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4fde58bb
...@@ -2362,22 +2362,19 @@ static int slic_if_init(struct adapter *adapter) ...@@ -2362,22 +2362,19 @@ static int slic_if_init(struct adapter *adapter)
adapter->state = ADAPT_UP; adapter->state = ADAPT_UP;
if (!card->loadtimerset) { if (!card->loadtimerset) {
init_timer(&card->loadtimer); setup_timer(&card->loadtimer, &slic_timer_load_check,
(ulong)card);
card->loadtimer.expires = card->loadtimer.expires =
jiffies + (SLIC_LOADTIMER_PERIOD * HZ); jiffies + (SLIC_LOADTIMER_PERIOD * HZ);
card->loadtimer.data = (ulong) card;
card->loadtimer.function = &slic_timer_load_check;
add_timer(&card->loadtimer); add_timer(&card->loadtimer);
card->loadtimerset = 1; card->loadtimerset = 1;
} }
if (!adapter->pingtimerset) { if (!adapter->pingtimerset) {
init_timer(&adapter->pingtimer); setup_timer(&adapter->pingtimer, &slic_timer_ping, (ulong)dev);
adapter->pingtimer.expires = adapter->pingtimer.expires =
jiffies + (PING_TIMER_INTERVAL * HZ); jiffies + (PING_TIMER_INTERVAL * HZ);
adapter->pingtimer.data = (ulong) dev;
adapter->pingtimer.function = &slic_timer_ping;
add_timer(&adapter->pingtimer); add_timer(&adapter->pingtimer);
adapter->pingtimerset = 1; adapter->pingtimerset = 1;
adapter->card->pingstatus = ISR_PINGMASK; adapter->card->pingstatus = ISR_PINGMASK;
......
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