diff options
| author | Colin Ian King <[email protected]> | 2022-09-28 22:24:43 +0000 |
|---|---|---|
| committer | Herbert Xu <[email protected]> | 2022-10-21 11:15:35 +0000 |
| commit | be7f5ef9ff4bbe99e4fcdf63057a993be178af46 (patch) | |
| tree | 3da8555cb637d9d3378a9375c98f42bd2cd3dba0 /drivers/crypto/stm32/stm32-cryp.c | |
| parent | crypto: ccp - Add support for TEE for PCI ID 0x14CA (diff) | |
| download | kernel-be7f5ef9ff4bbe99e4fcdf63057a993be178af46.tar.gz kernel-be7f5ef9ff4bbe99e4fcdf63057a993be178af46.zip | |
crypto: stm32 - Fix spelling mistake "wite" -> "write"
There are a couple of spelling mistakes in dev_err messages. Fix them.
Signed-off-by: Colin Ian King <[email protected]>
Acked-by: [email protected]
Signed-off-by: Herbert Xu <[email protected]>
Diffstat (limited to 'drivers/crypto/stm32/stm32-cryp.c')
| -rw-r--r-- | drivers/crypto/stm32/stm32-cryp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/crypto/stm32/stm32-cryp.c b/drivers/crypto/stm32/stm32-cryp.c index 59ef541123ae..59638dfce573 100644 --- a/drivers/crypto/stm32/stm32-cryp.c +++ b/drivers/crypto/stm32/stm32-cryp.c @@ -1400,7 +1400,7 @@ static void stm32_cryp_irq_write_ccm_padded_data(struct stm32_cryp *cryp) /* wait end of process */ err = stm32_cryp_wait_output(cryp); if (err) { - dev_err(cryp->dev, "Timeout (wite ccm padded data)\n"); + dev_err(cryp->dev, "Timeout (write ccm padded data)\n"); return stm32_cryp_finish_req(cryp, err); } @@ -1440,7 +1440,7 @@ static void stm32_cryp_irq_write_ccm_padded_data(struct stm32_cryp *cryp) /* h) wait for completion */ err = stm32_cryp_wait_busy(cryp); if (err) - dev_err(cryp->dev, "Timeout (wite ccm padded data)\n"); + dev_err(cryp->dev, "Timeout (write ccm padded data)\n"); /* i) run the he normal Final phase */ stm32_cryp_finish_req(cryp, err); |
