Skip to content

Commit

Permalink
ARM: pxa: Remove CLK_IS_ROOT
Browse files Browse the repository at this point in the history
This flag is a no-op now (see commit 47b0eeb "clk: Deprecate
CLK_IS_ROOT", 2016-02-02) so remove it.

Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
  • Loading branch information
Stephen Boyd authored and Robert Jarzmik committed Apr 30, 2016
1 parent f806dac commit e4c740e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-pxa/eseries.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ struct resource eseries_tmio_resources[] = {
/* Some e-series hardware cannot control the 32K clock */
static void __init __maybe_unused eseries_register_clks(void)
{
clk_register_fixed_rate(NULL, "CLK_CK32K", NULL, CLK_IS_ROOT, 32768);
clk_register_fixed_rate(NULL, "CLK_CK32K", NULL, 0, 32768);
}

#ifdef CONFIG_MACH_E330
Expand Down

0 comments on commit e4c740e

Please sign in to comment.