ACPI / APD: Remove CLK_IS_ROOT
This flag is a no-op now (see commit 47b0eeb3dc
"clk: Deprecate
CLK_IS_ROOT", 2016-02-02) so remove it.
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
3db80c230d
commit
cdd9a6b2a7
1 changed files with 1 additions and 2 deletions
|
@ -62,8 +62,7 @@ static int acpi_apd_setup(struct apd_private_data *pdata)
|
|||
if (dev_desc->fixed_clk_rate) {
|
||||
clk = clk_register_fixed_rate(&pdata->adev->dev,
|
||||
dev_name(&pdata->adev->dev),
|
||||
NULL, CLK_IS_ROOT,
|
||||
dev_desc->fixed_clk_rate);
|
||||
NULL, 0, dev_desc->fixed_clk_rate);
|
||||
clk_register_clkdev(clk, NULL, dev_name(&pdata->adev->dev));
|
||||
pdata->clk = clk;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue