Commit 9b2b6112 authored by Jia Jie Ho's avatar Jia Jie Ho Committed by Herbert Xu
Browse files

hwrng: starfive - Add runtime pm ops



Define SET_RUNTIME_PM_OPS for StarFive TRNG driver.

Signed-off-by: default avatarJia Jie Ho <jiajie.ho@starfivetech.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent f1b2fe90
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -369,8 +369,12 @@ static int __maybe_unused starfive_trng_resume(struct device *dev)
	return 0;
}

static DEFINE_SIMPLE_DEV_PM_OPS(starfive_trng_pm_ops, starfive_trng_suspend,
				starfive_trng_resume);
static const struct dev_pm_ops starfive_trng_pm_ops = {
	SET_SYSTEM_SLEEP_PM_OPS(starfive_trng_suspend,
				starfive_trng_resume)
	SET_RUNTIME_PM_OPS(starfive_trng_suspend,
			   starfive_trng_resume, NULL)
};

static const struct of_device_id trng_dt_ids[] __maybe_unused = {
	{ .compatible = "starfive,jh7110-trng" },