Skip to content

Commit

Permalink
remoteproc: imx: Fix typo in "failed"
Browse files Browse the repository at this point in the history
There are several places where "failed" is spelled incorrectly.

Fix them all.

Reviewed-by: Oleksij Rempel <[email protected]>
Signed-off-by: Fabio Estevam <[email protected]>
Signed-off-by: Bjorn Andersson <[email protected]>
  • Loading branch information
fabioestevam authored and andersson committed Jun 4, 2019
1 parent 0aa2582 commit 16a3c63
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/remoteproc/imx_rproc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
}
Expand All @@ -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;
}
Expand Down Expand Up @@ -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;
}

Expand Down

0 comments on commit 16a3c63

Please sign in to comment.