[PATCH] [linux-next] crypto: doc- Fix double words "the the" in crypto-API.tmpl

2016-07-07 Thread Masanari Iida
This patch fix double words "the the" in crypto-API.tmpl.

Signed-off-by: Masanari Iida <standby2...@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 d55dc5a39bad..fb2a1526f6ec 100644
--- a/Documentation/DocBook/crypto-API.tmpl
+++ b/Documentation/DocBook/crypto-API.tmpl
@@ -440,8 +440,8 @@
  The type flag specifies the type of the cipher algorithm.
  The caller usually provides a 0 when the caller wants the
  default handling. Otherwise, the caller may provide the
- following selections which match the the aforementioned
- cipher types:
+ following selections which match the aforementioned cipher
+ types:
 
 
 
-- 
2.9.0.243.g5c589a7

--
To unsubscribe from this list: send the line "unsubscribe linux-crypto" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 1/2] Doc:crypto: Fix typo in crypto-API.tmpl

2015-06-03 Thread Masanari Iida
This patch fix some spelling typo found in crypto-API.tmpl

Signed-off-by: Masanari Iida standby2...@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 = {
 
sect1titleZero-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

--
To unsubscribe from this list: send the line unsubscribe linux-crypto in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] crypto: Fix a typo in Kconfig

2015-04-03 Thread Masanari Iida
This patch fix a spelling typo in crypto/Kconfig.

Signed-off-by: Masanari Iida standby2...@gmail.com
---
 crypto/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/Kconfig b/crypto/Kconfig
index 8863993..8aaf298 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -1188,7 +1188,7 @@ config CRYPTO_SERPENT_SSE2_X86_64
  Keys are allowed to be from 0 to 256 bits in length, in steps
  of 8 bits.
 
- This module provides Serpent cipher algorithm that processes eigth
+ This module provides Serpent cipher algorithm that processes eight
  blocks parallel using SSE2 instruction set.
 
  See also:
-- 
2.4.0.rc0.43.gcf8a8c6

--
To unsubscribe from this list: send the line unsubscribe linux-crypto in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] crypto: Remove unnecessary KERN_ERR in bfin_crc.c

2015-01-01 Thread Masanari Iida
This patch removes unnecessary KERN_ERR from bfin_crypto_crc_mod_init().

Signed-off-by: Masanari Iida standby2...@gmail.com
---
 drivers/crypto/bfin_crc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/crypto/bfin_crc.c b/drivers/crypto/bfin_crc.c
index 9ae149b..33cf9eb 100644
--- a/drivers/crypto/bfin_crc.c
+++ b/drivers/crypto/bfin_crc.c
@@ -744,7 +744,7 @@ static int __init bfin_crypto_crc_mod_init(void)
 
ret = platform_driver_register(bfin_crypto_crc_driver);
if (ret) {
-   pr_info(KERN_ERR unable to register driver\n);
+   pr_err(unable to register driver\n);
return ret;
}
 
-- 
2.2.1.62.g3f15098

--
To unsubscribe from this list: send the line unsubscribe linux-crypto in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] crypto: Remove unnecessary KERN_INFO from testmgr.c

2014-10-06 Thread Masanari Iida
This patch remove unncessary KERN_INFO from pr_info within testmgr.c

Signed-off-by: Masanari Iida standby2...@gmail.com
---
 crypto/testmgr.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/crypto/testmgr.c b/crypto/testmgr.c
index 9459dfd..9d57e3f 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -3710,8 +3710,7 @@ test_done:
panic(%s: %s alg self test failed in fips mode!\n, driver, 
alg);
 
if (fips_enabled  !rc)
-   pr_info(KERN_INFO alg: self-tests for %s (%s) passed\n,
-   driver, alg);
+   pr_info(alg: self-tests for %s (%s) passed\n, driver, alg);
 
return rc;
 
-- 
2.1.1.273.g97b8860

--
To unsubscribe from this list: send the line unsubscribe linux-crypto in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html