.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * Hi6220 stub clock driver |
---|
3 | 4 | * |
---|
.. | .. |
---|
5 | 6 | * Copyright (c) 2015 Linaro Limited. |
---|
6 | 7 | * |
---|
7 | 8 | * Author: Leo Yan <leo.yan@linaro.org> |
---|
8 | | - * |
---|
9 | | - * This program is free software; you can redistribute it and/or modify |
---|
10 | | - * it under the terms of the GNU General Public License version 2 as |
---|
11 | | - * published by the Free Software Foundation. |
---|
12 | | - * |
---|
13 | 9 | */ |
---|
14 | 10 | |
---|
15 | 11 | #include <linux/clk-provider.h> |
---|
.. | .. |
---|
197 | 193 | static int hi6220_stub_clk_probe(struct platform_device *pdev) |
---|
198 | 194 | { |
---|
199 | 195 | struct device *dev = &pdev->dev; |
---|
200 | | - struct clk_init_data init = {}; |
---|
| 196 | + struct clk_init_data init; |
---|
201 | 197 | struct hi6220_stub_clk *stub_clk; |
---|
202 | 198 | struct clk *clk; |
---|
203 | 199 | struct device_node *np = pdev->dev.of_node; |
---|