Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1346921 > unrolled thread

[PATCH 33/41] clk: pwm: Remove CLK_IS_ROOT

Started byStephen Boyd <sboyd@codeaurora.org>
First post2016-03-01 20:10 +0100
Last post2016-03-02 10:40 +0100
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 33/41] clk: pwm: Remove CLK_IS_ROOT Stephen Boyd <sboyd@codeaurora.org> - 2016-03-01 20:10 +0100
    Re: [PATCH 33/41] clk: pwm: Remove CLK_IS_ROOT Philipp Zabel <p.zabel@pengutronix.de> - 2016-03-02 10:40 +0100

#1346921 — [PATCH 33/41] clk: pwm: Remove CLK_IS_ROOT

FromStephen Boyd <sboyd@codeaurora.org>
Date2016-03-01 20:10 +0100
Subject[PATCH 33/41] clk: pwm: Remove CLK_IS_ROOT
Message-ID<r7XQg-4Tj-85@gated-at.bofh.it>
This flag is a no-op now. Remove usage of the flag.

Cc: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
 drivers/clk/clk-pwm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/clk-pwm.c b/drivers/clk/clk-pwm.c
index 328fcfcefd8c..883045814dac 100644
--- a/drivers/clk/clk-pwm.c
+++ b/drivers/clk/clk-pwm.c
@@ -95,7 +95,7 @@ static int clk_pwm_probe(struct platform_device *pdev)
 
 	init.name = clk_name;
 	init.ops = &clk_pwm_ops;
-	init.flags = CLK_IS_BASIC | CLK_IS_ROOT;
+	init.flags = CLK_IS_BASIC;
 	init.num_parents = 0;
 
 	clk_pwm->pwm = pwm;
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

[toc] | [next] | [standalone]


#1347894

FromPhilipp Zabel <p.zabel@pengutronix.de>
Date2016-03-02 10:40 +0100
Message-ID<r8bqb-5KC-37@gated-at.bofh.it>
In reply to#1346921
Am Dienstag, den 01.03.2016, 11:00 -0800 schrieb Stephen Boyd:
> This flag is a no-op now. Remove usage of the flag.
> 
> Cc: Philipp Zabel <p.zabel@pengutronix.de>
> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
> ---
>  drivers/clk/clk-pwm.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/clk-pwm.c b/drivers/clk/clk-pwm.c
> index 328fcfcefd8c..883045814dac 100644
> --- a/drivers/clk/clk-pwm.c
> +++ b/drivers/clk/clk-pwm.c
> @@ -95,7 +95,7 @@ static int clk_pwm_probe(struct platform_device *pdev)
>  
>  	init.name = clk_name;
>  	init.ops = &clk_pwm_ops;
> -	init.flags = CLK_IS_BASIC | CLK_IS_ROOT;
> +	init.flags = CLK_IS_BASIC;
>  	init.num_parents = 0;
>  
>  	clk_pwm->pwm = pwm;

Acked-by: Philipp Zabel <p.zabel@pengutronix.de>

thanks
Philipp

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web