summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-sunxi
diff options
context:
space:
mode:
authorChen-Yu Tsai2018-03-08 16:00:09 +0100
committerChen-Yu Tsai2018-03-10 09:14:34 +0100
commitc161daea999b9b707d9ffde28ce978d14d5a1185 (patch)
tree8dd28d15be15e915565ef7d0edacf1c9c7899917 /arch/arm/mach-sunxi
parentARM: sun9i: smp: Support cpu0 hotplug (diff)
downloadkernel-qcow2-linux-c161daea999b9b707d9ffde28ce978d14d5a1185.tar.gz
kernel-qcow2-linux-c161daea999b9b707d9ffde28ce978d14d5a1185.tar.xz
kernel-qcow2-linux-c161daea999b9b707d9ffde28ce978d14d5a1185.zip
ARM: sunxi: mc-smp: Fix "lookback" typo
The sunxi_mc_smp_lookback function is modeled after the mcpm_loopback function in the MCPM framework. "lookback" was a typo introduced when the new function was added. Acked-by: Maxime Ripard <maxime.ripard@bootlin.com> Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Diffstat (limited to 'arch/arm/mach-sunxi')
-rw-r--r--arch/arm/mach-sunxi/mc_smp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-sunxi/mc_smp.c b/arch/arm/mach-sunxi/mc_smp.c
index 11e46c6efb90..9db6c4ed5861 100644
--- a/arch/arm/mach-sunxi/mc_smp.c
+++ b/arch/arm/mach-sunxi/mc_smp.c
@@ -659,7 +659,7 @@ static int __init nocache_trampoline(unsigned long __unused)
BUG();
}
-static int __init sunxi_mc_smp_lookback(void)
+static int __init sunxi_mc_smp_loopback(void)
{
int ret;
@@ -749,7 +749,7 @@ static int __init sunxi_mc_smp_init(void)
}
/* Configure CCI-400 for boot cluster */
- ret = sunxi_mc_smp_lookback();
+ ret = sunxi_mc_smp_loopback();
if (ret) {
pr_err("%s: failed to configure boot cluster: %d\n",
__func__, ret);