projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f9e832
)
clk: Remove extraneous 'for' word in comments
author
Rishi Gupta
<gupt21@gmail.com>
Sat, 17 Aug 2019 06:35:59 +0000
(12:05 +0530)
committer
Stephen Boyd
<sboyd@kernel.org>
Sun, 18 Aug 2019 01:13:51 +0000
(18:13 -0700)
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>
Link:
https://lkml.kernel.org/r/1566023759-7880-1-git-send-email-gupt21@gmail.com
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
drivers/clk/clk.c
patch
|
blob
|
history
diff --git
a/drivers/clk/clk.c
b/drivers/clk/clk.c
index c0990703ce5403c1092bda6d982c56dffd70e6a0..bea50eee9e8c239970a29f242c5529a8b79f6b13 100644
(file)
--- 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;