.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0 */ |
---|
1 | 2 | /* |
---|
2 | 3 | * R-Car Gen2 Clock Pulse Generator |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (C) 2016 Cogent Embedded Inc. |
---|
5 | | - * |
---|
6 | | - * This program is free software; you can redistribute it and/or modify it |
---|
7 | | - * under the terms of the GNU General Public License version 2 as published |
---|
8 | | - * by the Free Software Foundation; version 2 of the License. |
---|
9 | 6 | */ |
---|
10 | 7 | |
---|
11 | 8 | #ifndef __CLK_RENESAS_RCAR_GEN2_CPG_H__ |
---|
.. | .. |
---|
27 | 24 | }; |
---|
28 | 25 | |
---|
29 | 26 | struct rcar_gen2_cpg_pll_config { |
---|
30 | | - unsigned int extal_div; |
---|
31 | | - unsigned int pll1_mult; |
---|
32 | | - unsigned int pll3_mult; |
---|
33 | | - unsigned int pll0_mult; /* leave as zero if PLL0CR exists */ |
---|
| 27 | + u8 extal_div; |
---|
| 28 | + u8 pll1_mult; |
---|
| 29 | + u8 pll3_mult; |
---|
| 30 | + u8 pll0_mult; /* leave as zero if PLL0CR exists */ |
---|
34 | 31 | }; |
---|
35 | 32 | |
---|
36 | 33 | struct clk *rcar_gen2_cpg_clk_register(struct device *dev, |
---|