diff mbox

dmaengine: s3c24xx: Fix spelling mistake in dev_err mistake

Message ID 1425154453-7658-1-git-send-email-colin.king@canonical.com (mailing list archive)
State Superseded
Headers show

Commit Message

Colin King Feb. 28, 2015, 8:14 p.m. UTC
From: Colin Ian King <colin.king@canonical.com>

Fix spelling mistake, "aquire" -> "acquire"

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/dma/s3c24xx-dma.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Joe Perches Feb. 28, 2015, 9:25 p.m. UTC | #1
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 dmaengine" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/dma/s3c24xx-dma.c b/drivers/dma/s3c24xx-dma.c
index 2f91da3..4eae6d5 100644
--- a/drivers/dma/s3c24xx-dma.c
+++ b/drivers/dma/s3c24xx-dma.c
@@ -1238,7 +1238,7 @@  static int s3c24xx_dma_probe(struct platform_device *pdev)
 	if (!s3cdma->phy_chans)
 		return -ENOMEM;
 
-	/* aquire irqs and clocks for all physical channels */
+	/* acquire irqs and clocks for all physical channels */
 	for (i = 0; i < pdata->num_phy_channels; i++) {
 		struct s3c24xx_dma_phy *phy = &s3cdma->phy_chans[i];
 		char clk_name[6];
@@ -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",
 					i, PTR_ERR(phy->clk));
 				continue;
 			}