* [PATCH 1/2] Doc:crypto: Fix typo in crypto-API.tmpl
[not found] <20150603032848.GA3126@gondor.apana.org.au>
@ 2015-06-03 15:01 ` Masanari Iida
2015-06-03 15:01 ` [PATCH 2/2] Doc:crypto: Fix typo in crypto-API.xml Masanari Iida
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Masanari Iida @ 2015-06-03 15:01 UTC (permalink / raw)
To: linux-kernel, corbet, herbert, linux-crypto; +Cc: Masanari Iida
This patch fix some spelling typo found in crypto-API.tmpl
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
---
Documentation/DocBook/crypto-API.tmpl | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/DocBook/crypto-API.tmpl b/Documentation/DocBook/crypto-API.tmpl
index 5b05510..9e56773 100644
--- a/Documentation/DocBook/crypto-API.tmpl
+++ b/Documentation/DocBook/crypto-API.tmpl
@@ -119,7 +119,7 @@
<para>
Note: The terms "transformation" and cipher algorithm are used
- interchangably.
+ interchangeably.
</para>
</sect1>
@@ -1563,7 +1563,7 @@ struct sockaddr_alg sa = {
<sect1><title>Zero-Copy Interface</title>
<para>
- In addition to the send/write/read/recv system call familty, the AF_ALG
+ In addition to the send/write/read/recv system call family, the AF_ALG
interface can be accessed with the zero-copy interface of splice/vmsplice.
As the name indicates, the kernel tries to avoid a copy operation into
kernel space.
--
2.4.2.339.g77bd3ea
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] Doc:crypto: Fix typo in crypto-API.xml
2015-06-03 15:01 ` [PATCH 1/2] Doc:crypto: Fix typo in crypto-API.tmpl Masanari Iida
@ 2015-06-03 15:01 ` Masanari Iida
2015-06-03 19:35 ` Stephan Mueller
2015-06-03 19:35 ` [PATCH 1/2] Doc:crypto: Fix typo in crypto-API.tmpl Stephan Mueller
2015-06-04 8:14 ` Herbert Xu
2 siblings, 1 reply; 5+ messages in thread
From: Masanari Iida @ 2015-06-03 15:01 UTC (permalink / raw)
To: linux-kernel, corbet, herbert, linux-crypto; +Cc: Masanari Iida
This patch fix some typos found in crypto-API.xml.
It is because the file is generated from comments in sources,
so I had to fix typo in sources.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
---
include/crypto/aead.h | 2 +-
include/crypto/hash.h | 2 +-
include/crypto/rng.h | 2 +-
include/linux/crypto.h | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/include/crypto/aead.h b/include/crypto/aead.h
index 61306ed..fad7cd1 100644
--- a/include/crypto/aead.h
+++ b/include/crypto/aead.h
@@ -33,7 +33,7 @@
*
* The example code provided for the asynchronous block cipher operation
* applies here as well. Naturally all *ablkcipher* symbols must be exchanged
- * the *aead* pendants discussed in the following. In addtion, for the AEAD
+ * the *aead* pendants discussed in the following. In addition, for the AEAD
* operation, the aead_request_set_assoc function must be used to set the
* pointer to the associated data memory location before performing the
* encryption or decryption operation. In case of an encryption, the associated
diff --git a/include/crypto/hash.h b/include/crypto/hash.h
index 98abda9..57c8a6e 100644
--- a/include/crypto/hash.h
+++ b/include/crypto/hash.h
@@ -66,7 +66,7 @@ struct ahash_request {
/**
* struct ahash_alg - asynchronous message digest definition
* @init: Initialize the transformation context. Intended only to initialize the
- * state of the HASH transformation at the begining. This shall fill in
+ * state of the HASH transformation at the beginning. This shall fill in
* the internal structures used during the entire duration of the whole
* transformation. No data processing happens at this point.
* @update: Push a chunk of data into the driver for transformation. This
diff --git a/include/crypto/rng.h b/include/crypto/rng.h
index c5d4684..b95ede3 100644
--- a/include/crypto/rng.h
+++ b/include/crypto/rng.h
@@ -28,7 +28,7 @@ struct crypto_rng;
* if provided to the call.
* @seed: Seed or reseed the random number generator. With the
* invocation of this function call, the random number
- * generator shall become ready fo generation. If the
+ * generator shall become ready for generation. If the
* random number generator requires a seed for setting
* up a new state, the seed must be provided by the
* consumer while invoking this function. The required
diff --git a/include/linux/crypto.h b/include/linux/crypto.h
index 7d290a9..25a4b71 100644
--- a/include/linux/crypto.h
+++ b/include/linux/crypto.h
@@ -451,7 +451,7 @@ struct compress_alg {
* transformation algorithm.
* @cra_type: Type of the cryptographic transformation. This is a pointer to
* struct crypto_type, which implements callbacks common for all
- * trasnformation types. There are multiple options:
+ * transformation types. There are multiple options:
* &crypto_blkcipher_type, &crypto_ablkcipher_type,
* &crypto_ahash_type, &crypto_aead_type, &crypto_rng_type.
* This field might be empty. In that case, there are no common
--
2.4.2.339.g77bd3ea
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] Doc:crypto: Fix typo in crypto-API.xml
2015-06-03 15:01 ` [PATCH 2/2] Doc:crypto: Fix typo in crypto-API.xml Masanari Iida
@ 2015-06-03 19:35 ` Stephan Mueller
0 siblings, 0 replies; 5+ messages in thread
From: Stephan Mueller @ 2015-06-03 19:35 UTC (permalink / raw)
To: Masanari Iida; +Cc: linux-kernel, corbet, herbert, linux-crypto
Am Donnerstag, 4. Juni 2015, 00:01:21 schrieb Masanari Iida:
Hi Masanari,
> This patch fix some typos found in crypto-API.xml.
> It is because the file is generated from comments in sources,
> so I had to fix typo in sources.
>
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Stephan Mueller <smueller@chronox.de>
--
Ciao
Stephan
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] Doc:crypto: Fix typo in crypto-API.tmpl
2015-06-03 15:01 ` [PATCH 1/2] Doc:crypto: Fix typo in crypto-API.tmpl Masanari Iida
2015-06-03 15:01 ` [PATCH 2/2] Doc:crypto: Fix typo in crypto-API.xml Masanari Iida
@ 2015-06-03 19:35 ` Stephan Mueller
2015-06-04 8:14 ` Herbert Xu
2 siblings, 0 replies; 5+ messages in thread
From: Stephan Mueller @ 2015-06-03 19:35 UTC (permalink / raw)
To: Masanari Iida; +Cc: linux-kernel, corbet, herbert, linux-crypto
Am Donnerstag, 4. Juni 2015, 00:01:20 schrieb Masanari Iida:
Hi Masanari,
> This patch fix some spelling typo found in crypto-API.tmpl
>
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Stephan Mueller <smueller@chronox.de>
--
Ciao
Stephan
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] Doc:crypto: Fix typo in crypto-API.tmpl
2015-06-03 15:01 ` [PATCH 1/2] Doc:crypto: Fix typo in crypto-API.tmpl Masanari Iida
2015-06-03 15:01 ` [PATCH 2/2] Doc:crypto: Fix typo in crypto-API.xml Masanari Iida
2015-06-03 19:35 ` [PATCH 1/2] Doc:crypto: Fix typo in crypto-API.tmpl Stephan Mueller
@ 2015-06-04 8:14 ` Herbert Xu
2 siblings, 0 replies; 5+ messages in thread
From: Herbert Xu @ 2015-06-04 8:14 UTC (permalink / raw)
To: Masanari Iida; +Cc: linux-kernel, corbet, linux-crypto
On Thu, Jun 04, 2015 at 12:01:20AM +0900, Masanari Iida wrote:
> This patch fix some spelling typo found in crypto-API.tmpl
>
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Both applied.
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-06-04 8:14 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20150603032848.GA3126@gondor.apana.org.au>
2015-06-03 15:01 ` [PATCH 1/2] Doc:crypto: Fix typo in crypto-API.tmpl Masanari Iida
2015-06-03 15:01 ` [PATCH 2/2] Doc:crypto: Fix typo in crypto-API.xml Masanari Iida
2015-06-03 19:35 ` Stephan Mueller
2015-06-03 19:35 ` [PATCH 1/2] Doc:crypto: Fix typo in crypto-API.tmpl Stephan Mueller
2015-06-04 8:14 ` Herbert Xu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox