hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/drivers/clk/mvebu/clk-corediv.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0
12 /*
23 * MVEBU Core divider clock
34 *
....@@ -5,13 +6,11 @@
56 *
67 * Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
78 *
8
- * This file is licensed under the terms of the GNU General Public
9
- * License version 2. This program is licensed "as is" without any
10
- * warranty of any kind, whether express or implied.
119 */
1210
1311 #include <linux/kernel.h>
1412 #include <linux/clk-provider.h>
13
+#include <linux/io.h>
1514 #include <linux/of_address.h>
1615 #include <linux/slab.h>
1716 #include <linux/delay.h>
....@@ -252,7 +251,7 @@
252251 mvebu_corediv_clk_init(struct device_node *node,
253252 const struct clk_corediv_soc_desc *soc_desc)
254253 {
255
- struct clk_init_data init = {};
254
+ struct clk_init_data init;
256255 struct clk_corediv *corediv;
257256 struct clk **clks;
258257 void __iomem *base;