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


Groups > linux.kernel > #1346916 > unrolled thread

[PATCH 21/41] clk: x86: Remove CLK_IS_ROOT

Started byStephen Boyd <sboyd@codeaurora.org>
First post2016-03-01 20:10 +0100
Last post2016-03-03 11: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 21/41] clk: x86: Remove CLK_IS_ROOT Stephen Boyd <sboyd@codeaurora.org> - 2016-03-01 20:10 +0100
    Re: [PATCH 21/41] clk: x86: Remove CLK_IS_ROOT Mika Westerberg <mika.westerberg@linux.intel.com> - 2016-03-03 11:40 +0100

#1346916 — [PATCH 21/41] clk: x86: Remove CLK_IS_ROOT

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

Cc: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
 drivers/clk/x86/clk-lpt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/x86/clk-lpt.c b/drivers/clk/x86/clk-lpt.c
index f827083defc4..54e0cf9d8edd 100644
--- a/drivers/clk/x86/clk-lpt.c
+++ b/drivers/clk/x86/clk-lpt.c
@@ -30,7 +30,7 @@ static int lpt_clk_probe(struct platform_device *pdev)
 	/* LPSS free running clock */
 	drvdata->name = "lpss_clk";
 	clk = clk_register_fixed_rate(&pdev->dev, drvdata->name, NULL,
-				      CLK_IS_ROOT, 100000000);
+				      0, 100000000);
 	if (IS_ERR(clk))
 		return PTR_ERR(clk);
 
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

[toc] | [next] | [standalone]


#1348957

FromMika Westerberg <mika.westerberg@linux.intel.com>
Date2016-03-03 11:40 +0100
Message-ID<r8yPL-5Gt-1@gated-at.bofh.it>
In reply to#1346916
On Tue, Mar 01, 2016 at 11:00:06AM -0800, Stephen Boyd wrote:
> This flag is a no-op now. Remove usage of the flag.
> 
> Cc: Mika Westerberg <mika.westerberg@linux.intel.com>

Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web