* [U-Boot] [PATCH] clk: correct spelling of bound
@ 2019-08-02 22:43 Anatolij Gustschin
2019-08-03 10:52 ` Lukasz Majewski
2019-08-05 1:17 ` [U-Boot] " Peng Fan
0 siblings, 2 replies; 5+ messages in thread
From: Anatolij Gustschin @ 2019-08-02 22:43 UTC (permalink / raw)
To: u-boot
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
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* [U-Boot] [PATCH] clk: correct spelling of bound
2019-08-02 22:43 [U-Boot] [PATCH] clk: correct spelling of bound Anatolij Gustschin
@ 2019-08-03 10:52 ` Lukasz Majewski
2020-01-27 14:16 ` Anatolij Gustschin
2019-08-05 1:17 ` [U-Boot] " Peng Fan
1 sibling, 1 reply; 5+ messages in thread
From: Lukasz Majewski @ 2019-08-03 10:52 UTC (permalink / raw)
To: u-boot
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>
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH] clk: correct spelling of bound
2019-08-03 10:52 ` Lukasz Majewski
@ 2020-01-27 14:16 ` Anatolij Gustschin
2020-01-27 15:09 ` Lukasz Majewski
0 siblings, 1 reply; 5+ messages in thread
From: Anatolij Gustschin @ 2020-01-27 14:16 UTC (permalink / raw)
To: u-boot
Hi Lukasz,
On Sat, 3 Aug 2019 12:52:44 +0200
Lukasz Majewski lukma at denx.de wrote:
...
> Thanks Anatolij for the correction.
>
> Reviewed-by: Lukasz Majewski <lukma@denx.de>
>
> (I will add it to u-boot-clk tree ASAP).
this one doesn't apply any more, I've sent a rebased v2 patch.
--
Anatolij
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] clk: correct spelling of bound
2020-01-27 14:16 ` Anatolij Gustschin
@ 2020-01-27 15:09 ` Lukasz Majewski
0 siblings, 0 replies; 5+ messages in thread
From: Lukasz Majewski @ 2020-01-27 15:09 UTC (permalink / raw)
To: u-boot
Hi Anatolij,
> Hi Lukasz,
>
> On Sat, 3 Aug 2019 12:52:44 +0200
> Lukasz Majewski lukma at denx.de wrote:
> ...
> > Thanks Anatolij for the correction.
> >
> > Reviewed-by: Lukasz Majewski <lukma@denx.de>
> >
> > (I will add it to u-boot-clk tree ASAP).
>
> this one doesn't apply any more, I've sent a rebased v2 patch.
Thanks.
>
> --
> Anatolij
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: <https://lists.denx.de/pipermail/u-boot/attachments/20200127/abacea50/attachment.sig>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] [PATCH] clk: correct spelling of bound
2019-08-02 22:43 [U-Boot] [PATCH] clk: correct spelling of bound Anatolij Gustschin
2019-08-03 10:52 ` Lukasz Majewski
@ 2019-08-05 1:17 ` Peng Fan
1 sibling, 0 replies; 5+ messages in thread
From: Peng Fan @ 2019-08-05 1:17 UTC (permalink / raw)
To: u-boot
> Subject: [PATCH] clk: correct spelling of bound
>
> 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);
Reviewed-by: Peng Fan <peng.fan@nxp.com>
> #endif
> --
> 2.17.1
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-01-27 15:09 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-02 22:43 [U-Boot] [PATCH] clk: correct spelling of bound Anatolij Gustschin
2019-08-03 10:52 ` Lukasz Majewski
2020-01-27 14:16 ` Anatolij Gustschin
2020-01-27 15:09 ` Lukasz Majewski
2019-08-05 1:17 ` [U-Boot] " Peng Fan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox