Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1346916
| From | Stephen Boyd <sboyd@codeaurora.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 21/41] clk: x86: Remove CLK_IS_ROOT |
| Date | 2016-03-01 20:10 +0100 |
| Message-ID | <r7XQg-4Tj-71@gated-at.bofh.it> (permalink) |
| References | <r7XQd-4Tj-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
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
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[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
csiph-web