.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0 |
---|
1 | 2 | /* |
---|
2 | 3 | * MVEBU Core divider clock |
---|
3 | 4 | * |
---|
.. | .. |
---|
5 | 6 | * |
---|
6 | 7 | * Ezequiel Garcia <ezequiel.garcia@free-electrons.com> |
---|
7 | 8 | * |
---|
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. |
---|
11 | 9 | */ |
---|
12 | 10 | |
---|
13 | 11 | #include <linux/kernel.h> |
---|
14 | 12 | #include <linux/clk-provider.h> |
---|
| 13 | +#include <linux/io.h> |
---|
15 | 14 | #include <linux/of_address.h> |
---|
16 | 15 | #include <linux/slab.h> |
---|
17 | 16 | #include <linux/delay.h> |
---|
.. | .. |
---|
252 | 251 | mvebu_corediv_clk_init(struct device_node *node, |
---|
253 | 252 | const struct clk_corediv_soc_desc *soc_desc) |
---|
254 | 253 | { |
---|
255 | | - struct clk_init_data init = {}; |
---|
| 254 | + struct clk_init_data init; |
---|
256 | 255 | struct clk_corediv *corediv; |
---|
257 | 256 | struct clk **clks; |
---|
258 | 257 | void __iomem *base; |
---|