diff options
author | Bing Zhao <bzhao@marvell.com> | 2013-04-20 04:44:44 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2013-04-22 23:20:28 +0400 |
commit | 4587eea5b787b8373c72791a92084010f79443d0 (patch) | |
tree | 9f90e04abf1e507cc75080164f305d7441e5bc04 /drivers/net/wireless/mwifiex/cmdevt.c | |
parent | 0648f3a4b0e9598d75e8f68f0e20874239c2cb95 (diff) | |
download | linux-4587eea5b787b8373c72791a92084010f79443d0.tar.xz |
mwifiex: make use of msecs_to_jiffies()
Use msecs_to_jiffies() wherever possible.
Signed-off-by: Bing Zhao <bzhao@marvell.com>
Signed-off-by: Yogesh Ashok Powar <yogeshp@marvell.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/mwifiex/cmdevt.c')
-rw-r--r-- | drivers/net/wireless/mwifiex/cmdevt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/mwifiex/cmdevt.c b/drivers/net/wireless/mwifiex/cmdevt.c index da469c336aa1..74db0d24a579 100644 --- a/drivers/net/wireless/mwifiex/cmdevt.c +++ b/drivers/net/wireless/mwifiex/cmdevt.c @@ -250,7 +250,7 @@ static int mwifiex_dnld_cmd_to_fw(struct mwifiex_private *priv, /* Setup the timer after transmit command */ mod_timer(&adapter->cmd_timer, - jiffies + (MWIFIEX_TIMER_10S * HZ) / 1000); + jiffies + msecs_to_jiffies(MWIFIEX_TIMER_10S)); return 0; } |