Commit 2fab3019 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

docs: crypto_engine.rst: Fix two parse warnings

./Documentation/crypto/crypto_engine.rst:13: WARNING: Unexpected indentation.
./Documentation/crypto/crypto_engine.rst:15: WARNING: Block quote ends without a blank line; unexpected unindent.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Acked-by: default avatarJonathan Corbet <corbet@lwn.net>
parent b7017450
...@@ -8,11 +8,13 @@ The crypto engine API (CE), is a crypto queue manager. ...@@ -8,11 +8,13 @@ The crypto engine API (CE), is a crypto queue manager.
Requirement Requirement
----------- -----------
You have to put at start of your tfm_ctx the struct crypto_engine_ctx You have to put at start of your tfm_ctx the struct crypto_engine_ctx::
struct your_tfm_ctx {
struct your_tfm_ctx {
struct crypto_engine_ctx enginectx; struct crypto_engine_ctx enginectx;
... ...
}; };
Why: Since CE manage only crypto_async_request, it cannot know the underlying Why: Since CE manage only crypto_async_request, it cannot know the underlying
request_type and so have access only on the TFM. request_type and so have access only on the TFM.
So using container_of for accessing __ctx is impossible. So using container_of for accessing __ctx is impossible.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment