Skip to content

Commit

Permalink
clk: x86: Remove CLK_IS_ROOT
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Stephen Boyd committed Mar 3, 2016
1 parent 2969f6e commit 553b485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/clk/x86/clk-lpt.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 553b485

Please sign in to comment.