2023-05-29 06:58:14

by Baruch Siach

[permalink] [raw]
Subject: [PATCH] docs: crypto: async-tx-api: fix typo in struct name

Add missing underscore.

Signed-off-by: Baruch Siach <[email protected]>
---
Documentation/crypto/async-tx-api.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/crypto/async-tx-api.rst b/Documentation/crypto/async-tx-api.rst
index bfc773991bdc..27c146b54d71 100644
--- a/Documentation/crypto/async-tx-api.rst
+++ b/Documentation/crypto/async-tx-api.rst
@@ -66,7 +66,7 @@ features surfaced as a result:
::

struct dma_async_tx_descriptor *
- async_<operation>(<op specific parameters>, struct async_submit ctl *submit)
+ async_<operation>(<op specific parameters>, struct async_submit_ctl *submit)

3.2 Supported operations
------------------------
--
2.39.2



2023-06-09 08:12:48

by Jonathan Corbet

[permalink] [raw]
Subject: Re: [PATCH] docs: crypto: async-tx-api: fix typo in struct name

Baruch Siach <[email protected]> writes:

> Add missing underscore.
>
> Signed-off-by: Baruch Siach <[email protected]>
> ---
> Documentation/crypto/async-tx-api.rst | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/crypto/async-tx-api.rst b/Documentation/crypto/async-tx-api.rst
> index bfc773991bdc..27c146b54d71 100644
> --- a/Documentation/crypto/async-tx-api.rst
> +++ b/Documentation/crypto/async-tx-api.rst
> @@ -66,7 +66,7 @@ features surfaced as a result:
> ::
>
> struct dma_async_tx_descriptor *
> - async_<operation>(<op specific parameters>, struct async_submit ctl *submit)
> + async_<operation>(<op specific parameters>, struct async_submit_ctl *submit)

Applied, thanks.

jon