summaryrefslogtreecommitdiffstats
path: root/crypto/tcrypt.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2018-01-02 04:21:06 -0500
committerHerbert Xu <herbert@gondor.apana.org.au>2018-01-12 07:03:06 -0500
commit38dbe2d190b09389b0344d6ccb08adf02d930222 (patch)
tree48f3e4fb9b97caaa39e5dd9598a60d27abac3730 /crypto/tcrypt.c
parentbb30b8848c85e18ca7e371d0a869e94b3e383bdf (diff)
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/tcrypt.c')
-rw-r--r--crypto/tcrypt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c
index 58e3344d7169..f61d2f40dd90 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,
328 b_size = aead_sizes; 328 b_size = aead_sizes;
329 do { 329 do {
330 if (*b_size + authsize > XBUFSIZE * PAGE_SIZE) { 330 if (*b_size + authsize > XBUFSIZE * PAGE_SIZE) {
331 pr_err("template (%u) too big for bufufer (%lu)\n", 331 pr_err("template (%u) too big for buffer (%lu)\n",
332 authsize + *b_size, 332 authsize + *b_size,
333 XBUFSIZE * PAGE_SIZE); 333 XBUFSIZE * PAGE_SIZE);
334 goto out; 334 goto out;
@@ -1269,7 +1269,7 @@ static void test_mb_skcipher_speed(const char *algo, int enc, int secs,
1269 b_size = block_sizes; 1269 b_size = block_sizes;
1270 do { 1270 do {
1271 if (*b_size > XBUFSIZE * PAGE_SIZE) { 1271 if (*b_size > XBUFSIZE * PAGE_SIZE) {
1272 pr_err("template (%u) too big for bufufer (%lu)\n", 1272 pr_err("template (%u) too big for buffer (%lu)\n",
1273 *b_size, XBUFSIZE * PAGE_SIZE); 1273 *b_size, XBUFSIZE * PAGE_SIZE);
1274 goto out; 1274 goto out;
1275 } 1275 }