[PATCH 7/7] clk: sunxi: Add a simple gates driver
From: Stephen Boyd <hidden>
Date: 2015-07-27 20:26:48
Also in:
linux-clk
On 07/26, Maxime Ripard wrote:
quoted hunk ↗ jump to hunk
diff --git a/drivers/clk/sunxi/clk-simple-gates.c b/drivers/clk/sunxi/clk-simple-gates.c new file mode 100644 index 000000000000..1a3963a8a686 --- /dev/null +++ b/drivers/clk/sunxi/clk-simple-gates.c@@ -0,0 +1,159 @@ +/* + * Copyright 2015 Maxime Ripard + * + * Maxime Ripard <maxime.ripard@free-electrons.com> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +#include <linux/clk-provider.h> +#include <linux/clkdev.h>
Is this used?
+#include <linux/of.h> +#include <linux/of_address.h> +#include <linux/reset-controller.h>
Is this used?
+#include <linux/spinlock.h> +#include <linux/log2.h>
Is this used?
+ +static DEFINE_SPINLOCK(gates_lock); +
[...]
+
+static const int sun4i_a10_ahb_critical_clocks[] __initdata = {Shouldn't it be __initconst ?
+ 14, /* ahb_sdram */ +}; +
-- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, a Linux Foundation Collaborative Project