Merge branch 'iocb' into for-davem
[firefly-linux-kernel-4.4.55.git] / arch / blackfin / mach-bf609 / clock.c
index 56200f37cfc8cf3332033faf3f8fd289f3c149e1..244fa4ab4c56b854cff2c068dc9b4860a2238596 100644 (file)
@@ -363,6 +363,12 @@ static struct clk ethclk = {
        .ops        = &dummy_clk_ops,
 };
 
+static struct clk spiclk = {
+       .name       = "spi",
+       .parent     = &sclk1,
+       .ops        = &dummy_clk_ops,
+};
+
 static struct clk_lookup bf609_clks[] = {
        CLK(sys_clkin, NULL, "SYS_CLKIN"),
        CLK(pll_clk, NULL, "PLLCLK"),
@@ -375,6 +381,7 @@ static struct clk_lookup bf609_clks[] = {
        CLK(dclk, NULL, "DCLK"),
        CLK(oclk, NULL, "OCLK"),
        CLK(ethclk, NULL, "stmmaceth"),
+       CLK(spiclk, NULL, "spi"),
 };
 
 int __init clk_init(void)