From: Yunzhi Li Date: Mon, 7 Aug 2017 09:37:04 +0000 (+0800) Subject: ARM: hisi: Fix typo in comment X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=d2057bbb79aad0e0f20112edd7b6599f06101e64;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git ARM: hisi: Fix typo in comment The machine code "0xe51ff004" means "ldr pc, [pc, #-4]". This patch fixed the comment typo to avoid any confusion. Signed-off-by: Yunzhi Li Signed-off-by: Wei Xu --- diff --git a/arch/arm/mach-hisi/platsmp.c b/arch/arm/mach-hisi/platsmp.c index 91bb02dec20f..da5689ababf7 100644 --- a/arch/arm/mach-hisi/platsmp.c +++ b/arch/arm/mach-hisi/platsmp.c @@ -109,7 +109,7 @@ static void hix5hd2_set_scu_boot_addr(phys_addr_t start_addr, phys_addr_t jump_a virt = ioremap(start_addr, PAGE_SIZE); - writel_relaxed(0xe51ff004, virt); /* ldr pc, [rc, #-4] */ + writel_relaxed(0xe51ff004, virt); /* ldr pc, [pc, #-4] */ writel_relaxed(jump_addr, virt + 4); /* pc jump phy address */ iounmap(virt); }