Hi Mark,
"Mark A. Greer" writes:
> From: "Mark A. Greer"
>
> Convert the omap-sham crypto driver to use the
> pm_runtime API instead of the clk API.
>
> CC: Kevin Hilman
> CC: Paul Walmsley
> CC: Dmitry Kasatkin
> Signed-off-by: Mark A. Greer
I can't pretend to fully understand this driver
From: Wei Yongjun
clk_put(dd->aes_clk) will dereference an error-valued pointer since the
dd->aes_clk is a ERR_PTR() value. The correct check is call clk_put()
if !IS_ERR(dd->aes_clk).
dpatch engine is used to auto generate this patch.
(https://github.com/weiyj/dpatch)
Signed-off-by: Wei Yongju
Quoting Herbert Xu :
On Sun, Oct 21, 2012 at 08:45:29PM +0300, Jussi Kivilinna wrote:
Add module parameter to allow forcing redirection of crypto requests to
cryptd worker threads. This allows these code paths to be actually tested
(easier).
Signed-off-by: Jussi Kivilinna
Wouldn't this be a