| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Copyright 2012 Freescale Semiconductor, Inc. |
|---|
| 3 | | - * |
|---|
| 4 | | - * The code contained herein is licensed under the GNU General Public |
|---|
| 5 | | - * License. You may obtain a copy of the GNU General Public License |
|---|
| 6 | | - * Version 2 or later at the following locations: |
|---|
| 7 | | - * |
|---|
| 8 | | - * http://www.opensource.org/licenses/gpl-license.html |
|---|
| 9 | | - * http://www.gnu.org/copyleft/gpl.html |
|---|
| 10 | 4 | */ |
|---|
| 11 | 5 | |
|---|
| 12 | 6 | #include <linux/clk-provider.h> |
|---|
| .. | .. |
|---|
| 90 | 84 | { |
|---|
| 91 | 85 | struct clk_pll *pll; |
|---|
| 92 | 86 | struct clk *clk; |
|---|
| 93 | | - struct clk_init_data init = {}; |
|---|
| 87 | + struct clk_init_data init; |
|---|
| 94 | 88 | |
|---|
| 95 | 89 | pll = kzalloc(sizeof(*pll), GFP_KERNEL); |
|---|
| 96 | 90 | if (!pll) |
|---|