public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Lukasz Majewski <lukma@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] clk: correct spelling of bound
Date: Sat, 3 Aug 2019 12:52:44 +0200	[thread overview]
Message-ID: <20190803125244.293fb924@jawa> (raw)
In-Reply-To: <20190802224352.28473-1-agust@denx.de>

Hi Anatolij,

> bound is the correct past tense of bind.
> 
> Signed-off-by: Anatolij Gustschin <agust@denx.de>
> ---
>  drivers/clk/clk-composite.c | 12 ++++++------
>  drivers/clk/clk-divider.c   |  4 ++--
>  drivers/clk/clk-gate.c      |  4 ++--
>  drivers/clk/clk-mux.c       |  8 ++++----
>  drivers/clk/clk.c           |  2 +-
>  include/clk.h               |  6 +++---
>  6 files changed, 18 insertions(+), 18 deletions(-)
> 
> diff --git a/drivers/clk/clk-composite.c b/drivers/clk/clk-composite.c
> index a5626c33d1..484b4a82ba 100644
> --- a/drivers/clk/clk-composite.c
> +++ b/drivers/clk/clk-composite.c
> @@ -18,7 +18,7 @@
>  
>  static u8 clk_composite_get_parent(struct clk *clk)
>  {
> -	struct clk_composite *composite =
> to_clk_composite(clk_dev_binded(clk) ?
> +	struct clk_composite *composite =
> to_clk_composite(clk_dev_bound(clk) ? (struct clk
> *)dev_get_clk_ptr(clk->dev) : clk); struct clk *mux = composite->mux;
>  
> @@ -27,7 +27,7 @@ static u8 clk_composite_get_parent(struct clk *clk)
>  
>  static int clk_composite_set_parent(struct clk *clk, struct clk
> *parent) {
> -	struct clk_composite *composite =
> to_clk_composite(clk_dev_binded(clk) ?
> +	struct clk_composite *composite =
> to_clk_composite(clk_dev_bound(clk) ? (struct clk
> *)dev_get_clk_ptr(clk->dev) : clk); const struct clk_ops *mux_ops =
> composite->mux_ops; struct clk *mux = composite->mux;
> @@ -37,7 +37,7 @@ static int clk_composite_set_parent(struct clk
> *clk, struct clk *parent) 
>  static unsigned long clk_composite_recalc_rate(struct clk *clk)
>  {
> -	struct clk_composite *composite =
> to_clk_composite(clk_dev_binded(clk) ?
> +	struct clk_composite *composite =
> to_clk_composite(clk_dev_bound(clk) ? (struct clk
> *)dev_get_clk_ptr(clk->dev) : clk); const struct clk_ops *rate_ops =
> composite->rate_ops; struct clk *rate = composite->rate;
> @@ -47,7 +47,7 @@ static unsigned long
> clk_composite_recalc_rate(struct clk *clk) 
>  static ulong clk_composite_set_rate(struct clk *clk, unsigned long
> rate) {
> -	struct clk_composite *composite =
> to_clk_composite(clk_dev_binded(clk) ?
> +	struct clk_composite *composite =
> to_clk_composite(clk_dev_bound(clk) ? (struct clk
> *)dev_get_clk_ptr(clk->dev) : clk); const struct clk_ops *rate_ops =
> composite->rate_ops; struct clk *clk_rate = composite->rate;
> @@ -57,7 +57,7 @@ static ulong clk_composite_set_rate(struct clk
> *clk, unsigned long rate) 
>  static int clk_composite_enable(struct clk *clk)
>  {
> -	struct clk_composite *composite =
> to_clk_composite(clk_dev_binded(clk) ?
> +	struct clk_composite *composite =
> to_clk_composite(clk_dev_bound(clk) ? (struct clk
> *)dev_get_clk_ptr(clk->dev) : clk); const struct clk_ops *gate_ops =
> composite->gate_ops; struct clk *gate = composite->gate;
> @@ -67,7 +67,7 @@ static int clk_composite_enable(struct clk *clk)
>  
>  static int clk_composite_disable(struct clk *clk)
>  {
> -	struct clk_composite *composite =
> to_clk_composite(clk_dev_binded(clk) ?
> +	struct clk_composite *composite =
> to_clk_composite(clk_dev_bound(clk) ? (struct clk
> *)dev_get_clk_ptr(clk->dev) : clk); const struct clk_ops *gate_ops =
> composite->gate_ops; struct clk *gate = composite->gate;
> diff --git a/drivers/clk/clk-divider.c b/drivers/clk/clk-divider.c
> index 822e09b084..d3c5db0be2 100644
> --- a/drivers/clk/clk-divider.c
> +++ b/drivers/clk/clk-divider.c
> @@ -70,7 +70,7 @@ unsigned long divider_recalc_rate(struct clk *hw,
> unsigned long parent_rate, 
>  static ulong clk_divider_recalc_rate(struct clk *clk)
>  {
> -	struct clk_divider *divider =
> to_clk_divider(clk_dev_binded(clk) ?
> +	struct clk_divider *divider =
> to_clk_divider(clk_dev_bound(clk) ? dev_get_clk_ptr(clk->dev) : clk);
>  	unsigned long parent_rate = clk_get_parent_rate(clk);
>  	unsigned int val;
> @@ -150,7 +150,7 @@ int divider_get_val(unsigned long rate, unsigned
> long parent_rate, 
>  static ulong clk_divider_set_rate(struct clk *clk, unsigned long
> rate) {
> -	struct clk_divider *divider =
> to_clk_divider(clk_dev_binded(clk) ?
> +	struct clk_divider *divider =
> to_clk_divider(clk_dev_bound(clk) ? dev_get_clk_ptr(clk->dev) : clk);
>  	unsigned long parent_rate = clk_get_parent_rate(clk);
>  	int value;
> diff --git a/drivers/clk/clk-gate.c b/drivers/clk/clk-gate.c
> index 70b8794554..905b98a448 100644
> --- a/drivers/clk/clk-gate.c
> +++ b/drivers/clk/clk-gate.c
> @@ -43,7 +43,7 @@
>   */
>  static void clk_gate_endisable(struct clk *clk, int enable)
>  {
> -	struct clk_gate *gate = to_clk_gate(clk_dev_binded(clk) ?
> +	struct clk_gate *gate = to_clk_gate(clk_dev_bound(clk) ?
>  			dev_get_clk_ptr(clk->dev) : clk);
>  	int set = gate->flags & CLK_GATE_SET_TO_DISABLE ? 1 : 0;
>  	u32 reg;
> @@ -86,7 +86,7 @@ static int clk_gate_disable(struct clk *clk)
>  
>  int clk_gate_is_enabled(struct clk *clk)
>  {
> -	struct clk_gate *gate = to_clk_gate(clk_dev_binded(clk) ?
> +	struct clk_gate *gate = to_clk_gate(clk_dev_bound(clk) ?
>  			dev_get_clk_ptr(clk->dev) : clk);
>  	u32 reg;
>  
> diff --git a/drivers/clk/clk-mux.c b/drivers/clk/clk-mux.c
> index 5acc0b8cbd..f7d07dc1dc 100644
> --- a/drivers/clk/clk-mux.c
> +++ b/drivers/clk/clk-mux.c
> @@ -35,7 +35,7 @@
>  int clk_mux_val_to_index(struct clk *clk, u32 *table, unsigned int
> flags, unsigned int val)
>  {
> -	struct clk_mux *mux = to_clk_mux(clk_dev_binded(clk) ?
> +	struct clk_mux *mux = to_clk_mux(clk_dev_bound(clk) ?
>  			dev_get_clk_ptr(clk->dev) : clk);
>  	int num_parents = mux->num_parents;
>  
> @@ -79,7 +79,7 @@ unsigned int clk_mux_index_to_val(u32 *table,
> unsigned int flags, u8 index) 
>  u8 clk_mux_get_parent(struct clk *clk)
>  {
> -	struct clk_mux *mux = to_clk_mux(clk_dev_binded(clk) ?
> +	struct clk_mux *mux = to_clk_mux(clk_dev_bound(clk) ?
>  			dev_get_clk_ptr(clk->dev) : clk);
>  	u32 val;
>  
> @@ -97,7 +97,7 @@ u8 clk_mux_get_parent(struct clk *clk)
>  static int clk_fetch_parent_index(struct clk *clk,
>  				  struct clk *parent)
>  {
> -	struct clk_mux *mux = to_clk_mux(clk_dev_binded(clk) ?
> +	struct clk_mux *mux = to_clk_mux(clk_dev_bound(clk) ?
>  			dev_get_clk_ptr(clk->dev) : clk);
>  
>  	int i;
> @@ -115,7 +115,7 @@ static int clk_fetch_parent_index(struct clk *clk,
>  
>  static int clk_mux_set_parent(struct clk *clk, struct clk *parent)
>  {
> -	struct clk_mux *mux = to_clk_mux(clk_dev_binded(clk) ?
> +	struct clk_mux *mux = to_clk_mux(clk_dev_bound(clk) ?
>  			dev_get_clk_ptr(clk->dev) : clk);
>  	int index;
>  	u32 val;
> diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
> index 39b3087067..63141e02f9 100644
> --- a/drivers/clk/clk.c
> +++ b/drivers/clk/clk.c
> @@ -56,7 +56,7 @@ const char *clk_hw_get_name(const struct clk *hw)
>  	return hw->dev->name;
>  }
>  
> -bool clk_dev_binded(struct clk *clk)
> +bool clk_dev_bound(struct clk *clk)
>  {
>  	if (clk->dev && (clk->dev->flags & DM_FLAG_BOUND))
>  		return true;
> diff --git a/include/clk.h b/include/clk.h
> index 2ebc905e04..64e4bcd048 100644
> --- a/include/clk.h
> +++ b/include/clk.h
> @@ -358,11 +358,11 @@ static inline bool clk_valid(struct clk *clk)
>  int clk_get_by_id(ulong id, struct clk **clkp);
>  
>  /**
> - * clk_dev_binded() - Check whether the clk has a device binded
> + * clk_dev_bound() - Check whether the clk has a device bound
>   *
>   * @clk		A pointer to the clk
>   *
> - * @return true on binded, or false on no
> + * @return true when bound, or false otherwise
>   */
> -bool clk_dev_binded(struct clk *clk);
> +bool clk_dev_bound(struct clk *clk);
>  #endif

Thanks Anatolij for the correction.

Reviewed-by:  Lukasz Majewski <lukma@denx.de>

(I will add it to u-boot-clk tree ASAP).


Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma at denx.de
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 488 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190803/2a8b5942/attachment.sig>

  reply	other threads:[~2019-08-03 10:52 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-02 22:43 [U-Boot] [PATCH] clk: correct spelling of bound Anatolij Gustschin
2019-08-03 10:52 ` Lukasz Majewski [this message]
2020-01-27 14:16   ` Anatolij Gustschin
2020-01-27 15:09     ` Lukasz Majewski
2019-08-05  1:17 ` [U-Boot] " Peng Fan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190803125244.293fb924@jawa \
    --to=lukma@denx.de \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox