Message ID | 20190913220922.29501-1-tony@atomide.com (mailing list archive) |
---|---|
Headers | show |
Series | Non-urgent fixes and improvments for omap3-rom-rng | expand |
Hi, On Fri, Sep 13, 2019 at 03:09:16PM -0700, Tony Lindgren wrote: > Here are fixes and improvments for omap3-rom-rng that's been broken for > a while. > > The first four patches get it working, and then the last two patches add > support for runtime PM. Nice cleanups, the series is Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.com> Assuming you use clk_prepare_enable() in the runtime PM handler, I suggest to add another patch and go all the way to managed resources: devm_add_action() can be used for disabling runtime PM and devm_hwrng_register() can be used to register the hwrng device. -- Sebastian
* Sebastian Reichel <sre@kernel.org> [190914 13:06]: > Hi, > > On Fri, Sep 13, 2019 at 03:09:16PM -0700, Tony Lindgren wrote: > > Here are fixes and improvments for omap3-rom-rng that's been broken for > > a while. > > > > The first four patches get it working, and then the last two patches add > > support for runtime PM. > > Nice cleanups, the series is > > Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.com> > > Assuming you use clk_prepare_enable() in the runtime PM handler, I > suggest to add another patch and go all the way to managed resources: > devm_add_action() can be used for disabling runtime PM and > devm_hwrng_register() can be used to register the hwrng device. Sure good idea. I'll post a patch for that when I post v2 of this set. Regards, Tony