Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1716027 > unrolled thread

[PATCH] soc: ti: fix spelling mistake: "instace" -> "instance"

Started byColin King <colin.king@canonical.com>
First post2017-08-20 23:40 +0200
Last post2017-08-20 23:40 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] soc: ti: fix spelling mistake: "instace" -> "instance" Colin King <colin.king@canonical.com> - 2017-08-20 23:40 +0200

#1716027 — [PATCH] soc: ti: fix spelling mistake: "instace" -> "instance"

FromColin King <colin.king@canonical.com>
Date2017-08-20 23:40 +0200
Subject[PATCH] soc: ti: fix spelling mistake: "instace" -> "instance"
Message-ID<ugG6S-3RF-9@gated-at.bofh.it>
From: Colin Ian King <colin.king@canonical.com>

Trivial fix to spelling mistake in dev_err messages

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

diff --git a/drivers/soc/ti/knav_dma.c b/drivers/soc/ti/knav_dma.c
index 026182d3b27c..f463e04be412 100644
--- a/drivers/soc/ti/knav_dma.c
+++ b/drivers/soc/ti/knav_dma.c
@@ -431,7 +431,7 @@ void *knav_dma_open_channel(struct device *dev, const char *name,
 
 	chan_num = of_channel_match_helper(dev->of_node, name, &instance);
 	if (chan_num < 0) {
-		dev_err(kdev->dev, "No DMA instace with name %s\n", name);
+		dev_err(kdev->dev, "No DMA instance with name %s\n", name);
 		return (void *)-EINVAL;
 	}
 
@@ -454,7 +454,7 @@ void *knav_dma_open_channel(struct device *dev, const char *name,
 		}
 	}
 	if (!found) {
-		dev_err(kdev->dev, "No DMA instace with name %s\n", instance);
+		dev_err(kdev->dev, "No DMA instance with name %s\n", instance);
 		return (void *)-EINVAL;
 	}
 
-- 
2.11.0

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web