2015-05-07 00:51:39

by Murilo Opsfelder Araujo

[permalink] [raw]
Subject: [PATCH 0/2] Small adjustments in drivers/clk/clk.c

The first patch just improves code readability by addig comments after
#endif statements; the second one gets rid of a warning message during
kernel build.

Murilo Opsfelder Araujo (2):
drivers: clk: clk.c: Add comments indicating the matching #ifdef
blocks
drivers: clk: clk.c: Make clk_is_orphan() dependent of CONFIG_OF

drivers/clk/clk.c | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)

--
2.1.4


2015-05-07 00:52:04

by Murilo Opsfelder Araujo

[permalink] [raw]
Subject: [PATCH 1/2] drivers: clk: clk.c: Add comments indicating the matching #ifdef blocks

Signed-off-by: Murilo Opsfelder Araujo <[email protected]>
---
drivers/clk/clk.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index 087a092..a961eb6 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -2226,7 +2226,7 @@ static inline void clk_debug_reparent(struct clk_core *core,
static inline void clk_debug_unregister(struct clk_core *core)
{
}
-#endif
+#endif /* CONFIG_DEBUG_FS */

static bool clk_is_orphan(const struct clk *clk)
{
@@ -3144,4 +3144,4 @@ void __init of_clk_init(const struct of_device_id *matches)
force = true;
}
}
-#endif
+#endif /* CONFIG_OF */
--
2.1.4

2015-05-07 00:51:46

by Murilo Opsfelder Araujo

[permalink] [raw]
Subject: [PATCH 2/2] drivers: clk: clk.c: Make clk_is_orphan() dependent of CONFIG_OF

The function clk_is_orphan() is called only by
__of_clk_get_from_provider(), which depends on CONFIG_OF, so it does
make sense the move.

This change also gets rid of the following build message when CONFIG_OF
is not set:

drivers/clk/clk.c:2231:13: warning: ‘clk_is_orphan’ defined but not used [-Wunused-function]

Signed-off-by: Murilo Opsfelder Araujo <[email protected]>
---
drivers/clk/clk.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index a961eb6..d748aa2 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -2228,14 +2228,6 @@ static inline void clk_debug_unregister(struct clk_core *core)
}
#endif /* CONFIG_DEBUG_FS */

-static bool clk_is_orphan(const struct clk *clk)
-{
- if (!clk)
- return false;
-
- return clk->core->orphan;
-}
-
/**
* __clk_init - initialize the data structures in a struct clk
* @dev: device initializing this clk, placeholder for now
@@ -2950,6 +2942,14 @@ void of_clk_del_provider(struct device_node *np)
}
EXPORT_SYMBOL_GPL(of_clk_del_provider);

+static bool clk_is_orphan(const struct clk *clk)
+{
+ if (!clk)
+ return false;
+
+ return clk->core->orphan;
+}
+
struct clk *__of_clk_get_from_provider(struct of_phandle_args *clkspec,
const char *dev_id, const char *con_id)
{
--
2.1.4

2015-05-07 00:55:08

by Stephen Boyd

[permalink] [raw]
Subject: Re: [PATCH 2/2] drivers: clk: clk.c: Make clk_is_orphan() dependent of CONFIG_OF

On 05/06/15 17:51, Murilo Opsfelder Araujo wrote:
> The function clk_is_orphan() is called only by
> __of_clk_get_from_provider(), which depends on CONFIG_OF, so it does
> make sense the move.
>
> This change also gets rid of the following build message when CONFIG_OF
> is not set:
>
> drivers/clk/clk.c:2231:13: warning: ‘clk_is_orphan’ defined but not used [-Wunused-function]
>
> Signed-off-by: Murilo Opsfelder Araujo <[email protected]>

The patch that introduces this problem is gone now.

> ---
> drivers/clk/clk.c | 16 ++++++++--------
> 1 file changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
> index a961eb6..d748aa2 100644
> --- a/drivers/clk/clk.c
> +++ b/drivers/clk/clk.c
> @@ -2228,14 +2228,6 @@ static inline void clk_debug_unregister(struct clk_core *core)
> }
> #endif /* CONFIG_DEBUG_FS */
>
> -static bool clk_is_orphan(const struct clk *clk)
> -{
> - if (!clk)
> - return false;
> -
> - return clk->core->orphan;
> -}
> -
> /**
> * __clk_init - initialize the data structures in a struct clk
> * @dev: device initializing this clk, placeholder for now
> @@ -2950,6 +2942,14 @@ void of_clk_del_provider(struct device_node *np)
> }
> EXPORT_SYMBOL_GPL(of_clk_del_provider);
>
> +static bool clk_is_orphan(const struct clk *clk)
> +{
> + if (!clk)
> + return false;
> +
> + return clk->core->orphan;
> +}
> +
> struct clk *__of_clk_get_from_provider(struct of_phandle_args *clkspec,
> const char *dev_id, const char *con_id)
> {


--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

2015-05-07 01:00:21

by Murilo Opsfelder Araujo

[permalink] [raw]
Subject: Re: [PATCH 2/2] drivers: clk: clk.c: Make clk_is_orphan() dependent of CONFIG_OF

On Wed, May 6, 2015 at 9:55 PM, Stephen Boyd <[email protected]> wrote:
> On 05/06/15 17:51, Murilo Opsfelder Araujo wrote:
>> The function clk_is_orphan() is called only by
>> __of_clk_get_from_provider(), which depends on CONFIG_OF, so it does
>> make sense the move.
>>
>> This change also gets rid of the following build message when CONFIG_OF
>> is not set:
>>
>> drivers/clk/clk.c:2231:13: warning: ‘clk_is_orphan’ defined but not used [-Wunused-function]
>>
>> Signed-off-by: Murilo Opsfelder Araujo <[email protected]>
>
> The patch that introduces this problem is gone now.
>

Nice to know it is gone. I'm using next-20150506 which still contains
that. Probably the fix will land a next -next release.

Thanks, Stephen.

--
Murilo