All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] clk: Remove extraneous 'for' word in comments
@ 2019-08-17  6:35 Rishi Gupta
  2019-08-17  7:22   ` Joe Perches
  2019-08-18  1:13 ` Stephen Boyd
  0 siblings, 2 replies; 6+ messages in thread
From: Rishi Gupta @ 2019-08-17  6:35 UTC (permalink / raw)
  To: sboyd; +Cc: mturquette, linux-clk, linux-kernel, Rishi Gupta

An extra 'for' word is grammatically incorrect in the comment
'verifying ops for multi-parent clks'. This commit removes
this extra for word.

Signed-off-by: Rishi Gupta <gupt21@gmail.com>
---
 drivers/clk/clk.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index c099070..bea50ee 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -2437,7 +2437,7 @@ static int clk_core_set_parent_nolock(struct clk_core *core,
 	if (core->parent == parent)
 		return 0;
 
-	/* verify ops for for multi-parent clks */
+	/* verify ops for multi-parent clks */
 	if (core->num_parents > 1 && !core->ops->set_parent)
 		return -EPERM;
 
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-08-18  1:13 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-17  6:35 [PATCH] clk: Remove extraneous 'for' word in comments Rishi Gupta
2019-08-17  7:22 ` Joe Perches
2019-08-17  7:22   ` Joe Perches
2019-08-17 14:57   ` Rishi Gupta
2019-08-17 14:58     ` Rishi Gupta
2019-08-18  1:13 ` Stephen Boyd

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.