clk: x86: Remove CLK_IS_ROOT

This flag is a no-op now. Remove usage of the flag.

Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
This commit is contained in:
Stephen Boyd 2016-03-01 11:00:06 -08:00
parent 2969f6ee37
commit 553b485817

View file

@ -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);