mvebu soc for 4.7
- Clock framework cleanup with the "Remove CLK_IS_ROOT" series -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEABECAAYFAlcjaYUACgkQCwYYjhRyO9UZBgCfancMYVmODhUbS2FsaeGQqsgX Q2EAoJuV6WkKlURVzGn3RMacRaNXwVRF =/d5p -----END PGP SIGNATURE----- Merge tag 'mvebu-soc-4.7-1' of git://git.infradead.org/linux-mvebu into next/soc Merge "mvebu soc for 4.7" from Gregory CLEMENT: - Clock framework cleanup with the "Remove CLK_IS_ROOT" series * tag 'mvebu-soc-4.7-1' of git://git.infradead.org/linux-mvebu: ARM: dove: Remove CLK_IS_ROOT ARM: orion5x: Remove CLK_IS_ROOT ARM: mv78xx0: Remove CLK_IS_ROOT
This commit is contained in:
commit
8946bdf7c7
@ -88,8 +88,7 @@ static void __init dove_clk_init(void)
|
||||
struct clk *nand, *camera, *i2s0, *i2s1, *crypto, *ac97, *pdma;
|
||||
struct clk *xor0, *xor1, *ge, *gephy;
|
||||
|
||||
tclk = clk_register_fixed_rate(NULL, "tclk", NULL, CLK_IS_ROOT,
|
||||
dove_tclk);
|
||||
tclk = clk_register_fixed_rate(NULL, "tclk", NULL, 0, dove_tclk);
|
||||
|
||||
usb0 = dove_register_gate("usb0", "tclk", CLOCK_GATING_BIT_USB0);
|
||||
usb1 = dove_register_gate("usb1", "tclk", CLOCK_GATING_BIT_USB1);
|
||||
|
@ -168,8 +168,7 @@ static struct clk *tclk;
|
||||
|
||||
static void __init clk_init(void)
|
||||
{
|
||||
tclk = clk_register_fixed_rate(NULL, "tclk", NULL, CLK_IS_ROOT,
|
||||
get_tclk());
|
||||
tclk = clk_register_fixed_rate(NULL, "tclk", NULL, 0, get_tclk());
|
||||
|
||||
orion_clkdev_init(tclk);
|
||||
}
|
||||
|
@ -66,8 +66,7 @@ static struct clk *tclk;
|
||||
|
||||
void __init clk_init(void)
|
||||
{
|
||||
tclk = clk_register_fixed_rate(NULL, "tclk", NULL, CLK_IS_ROOT,
|
||||
orion5x_tclk);
|
||||
tclk = clk_register_fixed_rate(NULL, "tclk", NULL, 0, orion5x_tclk);
|
||||
|
||||
orion_clkdev_init(tclk);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user