Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 327cbbab authored by Colin Ian King's avatar Colin Ian King Committed by Herbert Xu
Browse files

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: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 4aad0cc5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;