Re: [PATCH] dmaengine: s3c24xx: Fix spelling mistake in dev_err mistake

From: Joe Perches
Date: Sat Feb 28 2015 - 16:25:16 EST


On Sat, 2015-02-28 at 20:14 +0000, Colin King wrote:
> Fix spelling mistake, "aquire" -> "acquire"

trivia:

> diff --git a/drivers/dma/s3c24xx-dma.c b/drivers/dma/s3c24xx-dma.c
[]
> @@ -1266,7 +1266,7 @@ static int s3c24xx_dma_probe(struct platform_device *pdev)
> sprintf(clk_name, "dma.%d", i);
> phy->clk = devm_clk_get(&pdev->dev, clk_name);
> if (IS_ERR(phy->clk) && sdata->has_clocks) {
> - dev_err(&pdev->dev, "unable to aquire clock for channel %d, error %lu",
> + dev_err(&pdev->dev, "unable to acquire clock for channel %d, error %lu",

Be nice to add the missing terminating newline '\n' too

dev_err(&pdev->dev, "unable to acquire clock for channel %d, error %lu\n",

> i, PTR_ERR(phy->clk));
> continue;
> }



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/