aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/arch_topology.h
diff options
context:
space:
mode:
authorDietmar Eggemann <dietmar.eggemann@arm.com>2020-02-11 19:15:15 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-02-14 09:18:54 -0800
commit99c73ce158a44a1a11cb146062bc32df0c1d95db (patch)
tree9a3f96fc40f12feadf231e3dcc95fa1453b56cad /include/linux/arch_topology.h
parentdrivers base/arch_topology: Remove 'struct sched_domain' forward declaration (diff)
downloadlinux-dev-99c73ce158a44a1a11cb146062bc32df0c1d95db.tar.xz
linux-dev-99c73ce158a44a1a11cb146062bc32df0c1d95db.zip
drivers base/arch_topology: Reformat topology_get_[cpu/freq]_scale() function name
The storage class and inline definition as well as the return type, function name and parameter list fit all into one line. Signed-off-by: Dietmar Eggemann <dietmar.eggemann@arm.com> Reviewed-by: Sudeep Holla <sudeep.holla@arm.com> Link: https://lore.kernel.org/r/20200211181515.32570-3-dietmar.eggemann@arm.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/arch_topology.h')
-rw-r--r--include/linux/arch_topology.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/linux/arch_topology.h b/include/linux/arch_topology.h
index f4b1d4fd7efb..c507e9ddd909 100644
--- a/include/linux/arch_topology.h
+++ b/include/linux/arch_topology.h
@@ -16,8 +16,7 @@ bool topology_parse_cpu_capacity(struct device_node *cpu_node, int cpu);
DECLARE_PER_CPU(unsigned long, cpu_scale);
-static inline
-unsigned long topology_get_cpu_scale(int cpu)
+static inline unsigned long topology_get_cpu_scale(int cpu)
{
return per_cpu(cpu_scale, cpu);
}
@@ -26,8 +25,7 @@ void topology_set_cpu_scale(unsigned int cpu, unsigned long capacity);
DECLARE_PER_CPU(unsigned long, freq_scale);
-static inline
-unsigned long topology_get_freq_scale(int cpu)
+static inline unsigned long topology_get_freq_scale(int cpu)
{
return per_cpu(freq_scale, cpu);
}