orinoco: orinoco_tmd use msecs_to_jiffies for conversion
authorNicholas Mc Guire <hofrat@osadl.org>
Wed, 4 Feb 2015 08:07:41 +0000 (03:07 -0500)
committerKalle Valo <kvalo@codeaurora.org>
Fri, 6 Feb 2015 06:45:46 +0000 (08:45 +0200)
This is only an API consolidation and should make things more readable
it replaces var * HZ / 1000 by msecs_to_jiffies(var).

Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/orinoco/orinoco_tmd.c

index 79d0e33b625e5c73df8821f28a7895bc97fe34ca..20ce569b8a43d3e3b4dcba10f0f5f9f193a395de 100644 (file)
@@ -71,7 +71,7 @@ static int orinoco_tmd_cor_reset(struct orinoco_private *priv)
        mdelay(1);
 
        /* Just in case, wait more until the card is no longer busy */
-       timeout = jiffies + (TMD_RESET_TIME * HZ / 1000);
+       timeout = jiffies + msecs_to_jiffies(TMD_RESET_TIME);
        reg = hermes_read_regn(hw, CMD);
        while (time_before(jiffies, timeout) && (reg & HERMES_CMD_BUSY)) {
                mdelay(1);