diff mbox series

clk: Fix a typo "opereation" -> "operation"

Message ID 20230215083701.124786-1-u.kleine-koenig@pengutronix.de (mailing list archive)
State Awaiting Upstream, archived
Headers show
Series clk: Fix a typo "opereation" -> "operation" | expand

Commit Message

Uwe Kleine-König Feb. 15, 2023, 8:37 a.m. UTC
While touching that comment also add an article and a full stop at the end
of the sentence

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
 include/linux/clk.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Uwe Kleine-König April 12, 2023, 4:26 p.m. UTC | #1
Hello Russell,

On Wed, Feb 15, 2023 at 09:37:01AM +0100, Uwe Kleine-König wrote:
> While touching that comment also add an article and a full stop at the end
> of the sentence
> 
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

I received no feedback on this patch. Is the patch system the right
place to submit this driver? Or is this supposed to go via the clk tree
with your ack?

Best regards
Uwe
diff mbox series

Patch

diff --git a/include/linux/clk.h b/include/linux/clk.h
index 1ef013324237..21fe9504091e 100644
--- a/include/linux/clk.h
+++ b/include/linux/clk.h
@@ -589,8 +589,8 @@  struct clk *devm_get_clk_from_child(struct device *dev,
  * @clk: clock source
  *
  * This function allows drivers to get exclusive control over the rate of a
- * provider. It prevents any other consumer to execute, even indirectly,
- * opereation which could alter the rate of the provider or cause glitches
+ * provider. It prevents any other consumer to execute, even indirectly, an
+ * operation which could alter the rate of the provider or cause glitches.
  *
  * If exlusivity is claimed more than once on clock, even by the same driver,
  * the rate effectively gets locked as exclusivity can't be preempted.