1
0
Fork 0

remoteproc: imx: Fix typo in "failed"

There are several places where "failed" is spelled incorrectly.

Fix them all.

Reviewed-by: Oleksij Rempel <o.rempel@pengutronix.de>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
alistair/sunxi64-5.4-dsi
Fabio Estevam 2019-06-03 20:46:28 -03:00 committed by Bjorn Andersson
parent 0aa25820aa
commit 16a3c637f0
1 changed files with 4 additions and 4 deletions

View File

@ -168,7 +168,7 @@ static int imx_rproc_start(struct rproc *rproc)
ret = regmap_update_bits(priv->regmap, dcfg->src_reg,
dcfg->src_mask, dcfg->src_start);
if (ret)
dev_err(dev, "Filed to enable M4!\n");
dev_err(dev, "Failed to enable M4!\n");
return ret;
}
@ -183,7 +183,7 @@ static int imx_rproc_stop(struct rproc *rproc)
ret = regmap_update_bits(priv->regmap, dcfg->src_reg,
dcfg->src_mask, dcfg->src_stop);
if (ret)
dev_err(dev, "Filed to stop M4!\n");
dev_err(dev, "Failed to stop M4!\n");
return ret;
}
@ -206,7 +206,7 @@ static int imx_rproc_da_to_sys(struct imx_rproc *priv, u64 da,
}
}
dev_warn(priv->dev, "Translation filed: da = 0x%llx len = 0x%x\n",
dev_warn(priv->dev, "Translation failed: da = 0x%llx len = 0x%x\n",
da, len);
return -ENOENT;
}
@ -352,7 +352,7 @@ static int imx_rproc_probe(struct platform_device *pdev)
ret = imx_rproc_addr_init(priv, pdev);
if (ret) {
dev_err(dev, "filed on imx_rproc_addr_init\n");
dev_err(dev, "failed on imx_rproc_addr_init\n");
goto err_put_rproc;
}