|
@@ -20,6 +20,13 @@
|
|
|
#include <linux/clk-provider.h>
|
|
|
#include <linux/clkdev.h>
|
|
|
#include <linux/clk/bcm2835.h>
|
|
|
+#include <linux/clk-provider.h>
|
|
|
+#include <linux/of.h>
|
|
|
+
|
|
|
+static const __initconst struct of_device_id clk_match[] = {
|
|
|
+ { .compatible = "fixed-clock", .data = of_fixed_clk_setup, },
|
|
|
+ { }
|
|
|
+};
|
|
|
|
|
|
/*
|
|
|
* These are fixed clocks. They're probably not all root clocks and it may
|
|
@@ -56,4 +63,6 @@ void __init bcm2835_init_clocks(void)
|
|
|
ret = clk_register_clkdev(clk, NULL, "20215000.uart");
|
|
|
if (ret)
|
|
|
pr_err("uart1_pclk alias not registered\n");
|
|
|
+
|
|
|
+ of_clk_init(clk_match);
|
|
|
}
|