| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Match running platform with pre-defined OPP values for CPUFreq |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 5 | 6 | * Lee Jones <lee.jones@linaro.org> |
|---|
| 6 | 7 | * |
|---|
| 7 | 8 | * Copyright (C) 2015 STMicroelectronics (R&D) Limited |
|---|
| 8 | | - * |
|---|
| 9 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 10 | | - * it under the terms of the version 2 of the GNU General Public License as |
|---|
| 11 | | - * published by the Free Software Foundation |
|---|
| 12 | 9 | */ |
|---|
| 13 | 10 | |
|---|
| 14 | 11 | #include <linux/cpu.h> |
|---|
| .. | .. |
|---|
| 43 | 40 | }; |
|---|
| 44 | 41 | |
|---|
| 45 | 42 | /** |
|---|
| 46 | | - * ST CPUFreq Driver Data |
|---|
| 43 | + * struct sti_cpufreq_ddata - ST CPUFreq Driver Data |
|---|
| 47 | 44 | * |
|---|
| 48 | | - * @cpu_node CPU's OF node |
|---|
| 49 | | - * @syscfg_eng Engineering Syscon register map |
|---|
| 50 | | - * @regmap Syscon register map |
|---|
| 45 | + * @cpu: CPU's OF node |
|---|
| 46 | + * @syscfg_eng: Engineering Syscon register map |
|---|
| 47 | + * @syscfg: Syscon register map |
|---|
| 51 | 48 | */ |
|---|
| 52 | 49 | static struct sti_cpufreq_ddata { |
|---|
| 53 | 50 | struct device *cpu; |
|---|