Staging: rtl8192u: Eliminate use of MSECS macro

Use msecs_to_jiffies instead of driver specific macro
MSECS. This is done using Coccinelle and semantic
patch used for this is as follows:

@@expression t;@@

- MSECS(t)
+ msecs_to_jiffies(t)

Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Shraddha Barke 2015-10-21 20:19:18 +05:30 committed by Greg Kroah-Hartman
parent 4b6a8799f3
commit 34b8dae75f
1 changed files with 1 additions and 1 deletions

View File

@ -3516,7 +3516,7 @@ static void watch_dog_timer_callback(unsigned long data)
queue_delayed_work(priv->priv_wq, &priv->watch_dog_wq, 0);
mod_timer(&priv->watch_dog_timer,
jiffies + MSECS(IEEE80211_WATCH_DOG_TIME));
jiffies + msecs_to_jiffies(IEEE80211_WATCH_DOG_TIME));
}
static int _rtl8192_up(struct net_device *dev)
{