Skip to content

Commit

Permalink
crypto: tcrypt - fix spelling mistake: "bufufer"-> "buffer"
Browse files Browse the repository at this point in the history
Trivial fix to spelling mistakes in pr_err error message text.

Signed-off-by: Colin Ian King <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
Colin Ian King authored and herbertx committed Jan 12, 2018
1 parent bb30b88 commit 38dbe2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crypto/tcrypt.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit 38dbe2d

Please sign in to comment.