Commit be7f5ef9 authored by Colin Ian King's avatar Colin Ian King Committed by Herbert Xu

crypto: stm32 - Fix spelling mistake "wite" -> "write"

There are a couple of spelling mistakes in dev_err messages. Fix them.
Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Acked-by: nicolas.toromanoff@foss.st.com
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 10da230a
...@@ -1400,7 +1400,7 @@ static void stm32_cryp_irq_write_ccm_padded_data(struct stm32_cryp *cryp) ...@@ -1400,7 +1400,7 @@ static void stm32_cryp_irq_write_ccm_padded_data(struct stm32_cryp *cryp)
/* wait end of process */ /* wait end of process */
err = stm32_cryp_wait_output(cryp); err = stm32_cryp_wait_output(cryp);
if (err) { 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); return stm32_cryp_finish_req(cryp, err);
} }
...@@ -1440,7 +1440,7 @@ static void stm32_cryp_irq_write_ccm_padded_data(struct stm32_cryp *cryp) ...@@ -1440,7 +1440,7 @@ static void stm32_cryp_irq_write_ccm_padded_data(struct stm32_cryp *cryp)
/* h) wait for completion */ /* h) wait for completion */
err = stm32_cryp_wait_busy(cryp); err = stm32_cryp_wait_busy(cryp);
if (err) 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 */ /* i) run the he normal Final phase */
stm32_cryp_finish_req(cryp, err); stm32_cryp_finish_req(cryp, err);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment