hwrng: starfive - Add runtime pm ops
Define SET_RUNTIME_PM_OPS for StarFive TRNG driver. Signed-off-by: Jia Jie Ho <jiajie.ho@starfivetech.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
f1b2fe9084
commit
9b2b61126a
@ -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" },
|
||||
|
Loading…
x
Reference in New Issue
Block a user