From: Nicholas Mc Guire Date: Wed, 4 Feb 2015 08:07:41 +0000 (-0500) Subject: orinoco: orinoco_tmd use msecs_to_jiffies for conversion X-Git-Tag: v4.0-rc1~133^2~10^2~8 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=c1f1f6663b3c749dd9eba9eaeb178859080104e2;p=uclinux-h8%2Flinux.git orinoco: orinoco_tmd use msecs_to_jiffies for conversion 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 Signed-off-by: Kalle Valo --- diff --git a/drivers/net/wireless/orinoco/orinoco_tmd.c b/drivers/net/wireless/orinoco/orinoco_tmd.c index 79d0e33b625e..20ce569b8a43 100644 --- a/drivers/net/wireless/orinoco/orinoco_tmd.c +++ b/drivers/net/wireless/orinoco/orinoco_tmd.c @@ -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);