Skip to content

Commit

Permalink
crypto: img-hash - fix spelling mistake in dev_err error message
Browse files Browse the repository at this point in the history
Trival change, fix spelling mistake 'aquire' -> 'acquire' in
dev_err message.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  • Loading branch information
Colin Ian King authored and Herbert Xu committed Aug 4, 2015
1 parent 4aad0cc commit 327cbba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/crypto/img-hash.c
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ static int img_hash_dma_init(struct img_hash_dev *hdev)

hdev->dma_lch = dma_request_slave_channel(hdev->dev, "tx");
if (!hdev->dma_lch) {
dev_err(hdev->dev, "Couldn't aquire a slave DMA channel.\n");
dev_err(hdev->dev, "Couldn't acquire a slave DMA channel.\n");
return -EBUSY;
}
dma_conf.direction = DMA_MEM_TO_DEV;
Expand Down

0 comments on commit 327cbba

Please sign in to comment.