diff options
author | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-05-06 20:30:09 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-06-15 18:48:59 +0300 |
commit | 2fab30199ad5944ec18a6688a72cc45ec25ebd3a (patch) | |
tree | ff01295a7449270fa31f7180811221593b6c67dc /Documentation/crypto | |
parent | b7017450978ef38bf14415b457bc57d50de150df (diff) | |
download | linux-2fab30199ad5944ec18a6688a72cc45ec25ebd3a.tar.xz |
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: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Acked-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/crypto')
-rw-r--r-- | Documentation/crypto/crypto_engine.rst | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Documentation/crypto/crypto_engine.rst b/Documentation/crypto/crypto_engine.rst index 8272ac92a14f..1d56221dfe35 100644 --- a/Documentation/crypto/crypto_engine.rst +++ b/Documentation/crypto/crypto_engine.rst @@ -8,11 +8,13 @@ The crypto engine API (CE), is a crypto queue manager. Requirement ----------- -You have to put at start of your tfm_ctx the struct crypto_engine_ctx -struct your_tfm_ctx { +You have to put at start of your tfm_ctx the struct crypto_engine_ctx:: + + struct your_tfm_ctx { struct crypto_engine_ctx enginectx; ... -}; + }; + Why: Since CE manage only crypto_async_request, it cannot know the underlying request_type and so have access only on the TFM. So using container_of for accessing __ctx is impossible. |