Commit 817fcdbd authored by Xichao Zhao's avatar Xichao Zhao Committed by Herbert Xu
Browse files

hwrng: timeriomem - Use us_to_ktime() where appropriate



It is better to replace ns_to_ktime() with us_to_ktime(),
which can make the code clearer.

Signed-off-by: default avatarXichao Zhao <zhao.xichao@vivo.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent efaa2d81
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -150,7 +150,7 @@ static int timeriomem_rng_probe(struct platform_device *pdev)
		priv->rng_ops.quality = pdata->quality;
	}

	priv->period = ns_to_ktime(period * NSEC_PER_USEC);
	priv->period = us_to_ktime(period);
	init_completion(&priv->completion);
	hrtimer_setup(&priv->timer, timeriomem_rng_trigger, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);