Skip to content

Commit

Permalink
staging: sep: Fix typo in printk within sep driver
Browse files Browse the repository at this point in the history
Correct spelling typo in printk.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Masanari Iida authored and Greg Kroah-Hartman committed Mar 28, 2013
1 parent b26c05a commit 1cedfa3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/sep/sep_crypto.c
Original file line number Diff line number Diff line change
Expand Up @@ -1206,7 +1206,7 @@ static int sep_crypto_block_data(struct ablkcipher_request *req)

if (copy_result != crypto_ablkcipher_blocksize(tfm)) {
dev_warn(&ta_ctx->sep_used->pdev->dev,
"des block copy faild\n");
"des block copy failed\n");
return -ENOMEM;
}

Expand Down Expand Up @@ -1637,7 +1637,7 @@ static u32 crypto_post_op(struct sep_device *sep)
crypto_ablkcipher_blocksize(tfm)) {

dev_warn(&ta_ctx->sep_used->pdev->dev,
"des block copy faild\n");
"des block copy failed\n");
sep_crypto_release(sctx, ta_ctx,
-ENOMEM);
return -ENOMEM;
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/sep/sep_driver_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ held by the process (struct file) */
/* maximum number of entries in the caller id table */
#define SEP_CALLER_ID_TABLE_NUM_ENTRIES 20

/* maximum number of symetric operation (that require DMA resource)
/* maximum number of symmetric operation (that require DMA resource)
per one message */
#define SEP_MAX_NUM_SYNC_DMA_OPS 16

Expand Down

0 comments on commit 1cedfa3

Please sign in to comment.