Commit c161daea authored by Chen-Yu Tsai's avatar Chen-Yu Tsai

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: default avatarMaxime Ripard <maxime.ripard@bootlin.com>
Signed-off-by: default avatarChen-Yu Tsai <wens@csie.org>
parent 8eaa0648
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment