diff options
author | Colin Ian King <colin.king@canonical.com> | 2020-09-28 15:30:42 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-09-28 22:33:56 +0300 |
commit | 0e9683659c6926fd3f30345f9f58893e630379ed (patch) | |
tree | f3d2ad1448e380ab149f0c37c0d82bef2e6142d4 /drivers/spi/spi-hisi-sfc-v3xx.c | |
parent | b4ac06ed7fb097b1f2a4fd2d9754387f48b6ebfe (diff) | |
download | linux-0e9683659c6926fd3f30345f9f58893e630379ed.tar.xz |
spi: hisi-sfc-v3xx: fix spelling mistake "occured" -> "occurred"
There is a spelling mistake in a dev_err message. Fix it.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20200928123042.125359-1-colin.king@canonical.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/spi-hisi-sfc-v3xx.c')
-rw-r--r-- | drivers/spi/spi-hisi-sfc-v3xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-hisi-sfc-v3xx.c b/drivers/spi/spi-hisi-sfc-v3xx.c index 46454dc2d109..4650b483a33d 100644 --- a/drivers/spi/spi-hisi-sfc-v3xx.c +++ b/drivers/spi/spi-hisi-sfc-v3xx.c @@ -121,7 +121,7 @@ static int hisi_sfc_v3xx_handle_completion(struct hisi_sfc_v3xx_host *host) * happens, we regard it as an unsupported error here. */ if (!(reg & HISI_SFC_V3XX_INT_MASK_CPLT)) { - dev_err(host->dev, "unsupported error occured, status=0x%x\n", reg); + dev_err(host->dev, "unsupported error occurred, status=0x%x\n", reg); return -EIO; } |