.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * Hisilicon hi6220 SoC divider clock driver |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (c) 2015 Hisilicon Limited. |
---|
5 | 6 | * |
---|
6 | 7 | * Author: Bintian Wang <bintian.wang@huawei.com> |
---|
7 | | - * |
---|
8 | | - * This program is free software; you can redistribute it and/or modify |
---|
9 | | - * it under the terms of the GNU General Public License version 2 as |
---|
10 | | - * published by the Free Software Foundation. |
---|
11 | | - * |
---|
12 | 8 | */ |
---|
13 | 9 | |
---|
14 | 10 | #include <linux/kernel.h> |
---|
.. | .. |
---|
107 | 103 | { |
---|
108 | 104 | struct hi6220_clk_divider *div; |
---|
109 | 105 | struct clk *clk; |
---|
110 | | - struct clk_init_data init = {}; |
---|
| 106 | + struct clk_init_data init; |
---|
111 | 107 | struct clk_div_table *table; |
---|
112 | 108 | u32 max_div, min_div; |
---|
113 | 109 | int i; |
---|