Commit 38dbe2d1 authored by Colin Ian King's avatar Colin Ian King Committed by Herbert Xu

crypto: tcrypt - fix spelling mistake: "bufufer"-> "buffer"

Trivial fix to spelling mistakes in pr_err error message text.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent bb30b884
...@@ -328,7 +328,7 @@ static void test_mb_aead_speed(const char *algo, int enc, int secs, ...@@ -328,7 +328,7 @@ static void test_mb_aead_speed(const char *algo, int enc, int secs,
b_size = aead_sizes; b_size = aead_sizes;
do { do {
if (*b_size + authsize > XBUFSIZE * PAGE_SIZE) { 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, authsize + *b_size,
XBUFSIZE * PAGE_SIZE); XBUFSIZE * PAGE_SIZE);
goto out; goto out;
...@@ -1269,7 +1269,7 @@ static void test_mb_skcipher_speed(const char *algo, int enc, int secs, ...@@ -1269,7 +1269,7 @@ static void test_mb_skcipher_speed(const char *algo, int enc, int secs,
b_size = block_sizes; b_size = block_sizes;
do { do {
if (*b_size > XBUFSIZE * PAGE_SIZE) { 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); *b_size, XBUFSIZE * PAGE_SIZE);
goto out; goto out;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment