aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm64/include/asm/cpu_ops.h
diff options
context:
space:
mode:
authorGavin Shan <gshan@redhat.com>2020-03-19 10:01:43 +1100
committerCatalin Marinas <catalin.marinas@arm.com>2020-03-24 17:24:13 +0000
commit6885fb129be30c627eb2f5b1498dba498ff6c037 (patch)
tree4ca91677cae07feac873a0ca48084938fa77b9db /arch/arm64/include/asm/cpu_ops.h
parentarm64: Declare ACPI parking protocol CPU operation if needed (diff)
downloadlinux-dev-6885fb129be30c627eb2f5b1498dba498ff6c037.tar.xz
linux-dev-6885fb129be30c627eb2f5b1498dba498ff6c037.zip
arm64: Rename cpu_read_ops() to init_cpu_ops()
This renames cpu_read_ops() to init_cpu_ops() as the function is only called in initialization phase. Also, we will introduce get_cpu_ops() in the subsequent patches, to retireve the CPU operation by the given CPU index. The usage of cpu_read_ops() and get_cpu_ops() are difficult to be distinguished from their names. Signed-off-by: Gavin Shan <gshan@redhat.com> Acked-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'arch/arm64/include/asm/cpu_ops.h')
-rw-r--r--arch/arm64/include/asm/cpu_ops.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm64/include/asm/cpu_ops.h b/arch/arm64/include/asm/cpu_ops.h
index 86aabf1e0199..baa13b5db2ca 100644
--- a/arch/arm64/include/asm/cpu_ops.h
+++ b/arch/arm64/include/asm/cpu_ops.h
@@ -56,11 +56,11 @@ struct cpu_operations {
};
extern const struct cpu_operations *cpu_ops[NR_CPUS];
-int __init cpu_read_ops(int cpu);
+int __init init_cpu_ops(int cpu);
-static inline void __init cpu_read_bootcpu_ops(void)
+static inline void __init init_bootcpu_ops(void)
{
- cpu_read_ops(0);
+ init_cpu_ops(0);
}
#endif /* ifndef __ASM_CPU_OPS_H */