| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * PLL clock driver for Keystone devices |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 2013 Texas Instruments Inc. |
|---|
| 5 | 6 | * Murali Karicheri <m-karicheri2@ti.com> |
|---|
| 6 | 7 | * Santosh Shilimkar <santosh.shilimkar@ti.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 as published by |
|---|
| 10 | | - * the Free Software Foundation; either version 2 of the License, or |
|---|
| 11 | | - * (at your option) any later version. |
|---|
| 12 | 8 | */ |
|---|
| 13 | 9 | #include <linux/clk-provider.h> |
|---|
| 14 | 10 | #include <linux/err.h> |
|---|
| .. | .. |
|---|
| 126 | 122 | const char *parent_name, |
|---|
| 127 | 123 | struct clk_pll_data *pll_data) |
|---|
| 128 | 124 | { |
|---|
| 129 | | - struct clk_init_data init = {}; |
|---|
| 125 | + struct clk_init_data init; |
|---|
| 130 | 126 | struct clk_pll *pll; |
|---|
| 131 | 127 | struct clk *clk; |
|---|
| 132 | 128 | |
|---|
| .. | .. |
|---|
| 219 | 215 | } |
|---|
| 220 | 216 | |
|---|
| 221 | 217 | out: |
|---|
| 222 | | - pr_err("%s: error initializing pll %s\n", __func__, node->name); |
|---|
| 218 | + pr_err("%s: error initializing pll %pOFn\n", __func__, node); |
|---|
| 223 | 219 | kfree(pll_data); |
|---|
| 224 | 220 | } |
|---|
| 225 | 221 | |
|---|
| .. | .. |
|---|
| 338 | 334 | pr_err("%s: error registering mux %s\n", __func__, clk_name); |
|---|
| 339 | 335 | } |
|---|
| 340 | 336 | CLK_OF_DECLARE(pll_mux_clock, "ti,keystone,pll-mux-clock", of_pll_mux_clk_init); |
|---|
| 337 | + |
|---|
| 338 | +MODULE_LICENSE("GPL"); |
|---|
| 339 | +MODULE_DESCRIPTION("PLL clock driver for Keystone devices"); |
|---|
| 340 | +MODULE_AUTHOR("Murali Karicheri <m-karicheri2@ti.com>"); |
|---|
| 341 | +MODULE_AUTHOR("Santosh Shilimkar <santosh.shilimkar@ti.com>"); |
|---|