Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

clk: qoriq: Remove CLK_IS_ROOT

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

Cc: Hou Zhiqiang <B48286@freescale.com>
Cc: Scott Wood <scottwood@freescale.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>

+1 -1
+1 -1
drivers/clk/clk-qoriq.c
··· 876 876 if (of_property_read_u32(node, "clock-frequency", &rate)) 877 877 return ERR_PTR(-ENODEV); 878 878 879 - return clk_register_fixed_rate(NULL, name, NULL, CLK_IS_ROOT, rate); 879 + return clk_register_fixed_rate(NULL, name, NULL, 0, rate); 880 880 } 881 881 882 882 static struct clk *sysclk_from_parent(const char *name)