diff options
author | Rishi Gupta <gupt21@gmail.com> | 2019-08-17 09:35:59 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2019-08-18 04:13:51 +0300 |
commit | ef13e55c27e128b6d84aa939dcc565b1d2ee7724 (patch) | |
tree | 81d0de70caf2787326816a701ad9ff96747536b8 /drivers/clk/clk.c | |
parent | 5f9e832c137075045d15cd6899ab0505cfb2ca4b (diff) | |
download | linux-ef13e55c27e128b6d84aa939dcc565b1d2ee7724.tar.xz |
clk: Remove extraneous 'for' word in comments
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>
Diffstat (limited to 'drivers/clk/clk.c')
-rw-r--r-- | drivers/clk/clk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index c0990703ce54..bea50eee9e8c 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; |