| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Copyright 2014 Linaro Ltd. |
|---|
| 3 | 4 | * Copyright (C) 2014 ZTE Corporation. |
|---|
| 4 | | - * |
|---|
| 5 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 6 | | - * it under the terms of the GNU General Public License version 2 as |
|---|
| 7 | | - * published by the Free Software Foundation. |
|---|
| 8 | 5 | */ |
|---|
| 9 | 6 | |
|---|
| 10 | 7 | #include <linux/clk-provider.h> |
|---|
| .. | .. |
|---|
| 161 | 158 | { |
|---|
| 162 | 159 | struct clk_zx_pll *zx_pll; |
|---|
| 163 | 160 | struct clk *clk; |
|---|
| 164 | | - struct clk_init_data init = {}; |
|---|
| 161 | + struct clk_init_data init; |
|---|
| 165 | 162 | |
|---|
| 166 | 163 | zx_pll = kzalloc(sizeof(*zx_pll), GFP_KERNEL); |
|---|
| 167 | 164 | if (!zx_pll) |
|---|
| .. | .. |
|---|
| 300 | 297 | { |
|---|
| 301 | 298 | struct clk_zx_audio *zx_audio; |
|---|
| 302 | 299 | struct clk *clk; |
|---|
| 303 | | - struct clk_init_data init = {}; |
|---|
| 300 | + struct clk_init_data init; |
|---|
| 304 | 301 | |
|---|
| 305 | 302 | zx_audio = kzalloc(sizeof(*zx_audio), GFP_KERNEL); |
|---|
| 306 | 303 | if (!zx_audio) |
|---|