From: Colin Ian King Date: Sun, 2 Aug 2015 23:05:03 +0000 (+0100) Subject: crypto: img-hash - fix spelling mistake in dev_err error message X-Git-Tag: v4.3-rc1~143^2~81 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=327cbbabfb77c321fb9f21068c18e6bb951d07a7;p=karo-tx-linux.git crypto: img-hash - fix spelling mistake in dev_err error message Trival change, fix spelling mistake 'aquire' -> 'acquire' in dev_err message. Signed-off-by: Colin Ian King Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/img-hash.c b/drivers/crypto/img-hash.c index ad47d0d61098..68e8aa90fe01 100644 --- a/drivers/crypto/img-hash.c +++ b/drivers/crypto/img-hash.c @@ -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;