summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2018-01-02 09:21:06 +0000
committerHerbert Xu <herbert@gondor.apana.org.au>2018-01-12 23:03:06 +1100
commitf3193325d890c69341e38e40f571d8f6eb9aa329 (patch)
treee3f4997d32449d7ff1e480488b5c049db90d1cd3 /crypto
parent5bbed7cae7b557883d1b01cc6a7890a7d2c40ff8 (diff)
downloadlinux-crypto-f3193325d890c69341e38e40f571d8f6eb9aa329.tar.gz
linux-crypto-f3193325d890c69341e38e40f571d8f6eb9aa329.zip
crypto: tcrypt - fix spelling mistake: "bufufer"-> "buffer"
Trivial fix to spelling mistakes in pr_err error message text. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/tcrypt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c
index 58e3344d..f61d2f40 100644
--- a/crypto/tcrypt.c
+++ b/crypto/tcrypt.c
@@ -328,7 +328,7 @@ static void test_mb_aead_speed(const char *algo, int enc, int secs,
b_size = aead_sizes;
do {
if (*b_size + authsize > XBUFSIZE * PAGE_SIZE) {
- pr_err("template (%u) too big for bufufer (%lu)\n",
+ pr_err("template (%u) too big for buffer (%lu)\n",
authsize + *b_size,
XBUFSIZE * PAGE_SIZE);
goto out;
@@ -1269,7 +1269,7 @@ static void test_mb_skcipher_speed(const char *algo, int enc, int secs,
b_size = block_sizes;
do {
if (*b_size > XBUFSIZE * PAGE_SIZE) {
- pr_err("template (%u) too big for bufufer (%lu)\n",
+ pr_err("template (%u) too big for buffer (%lu)\n",
*b_size, XBUFSIZE * PAGE_SIZE);
goto out;
}