diff options
author | Kevin Hao <haokexin@gmail.com> | 2020-04-17 13:32:11 +0300 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2020-07-08 23:44:40 +0300 |
commit | b8c1c9fe6a042dfbb169d14ab2000d9163f06d10 (patch) | |
tree | 6bc055d14239d0f8e5614d0e9ddf96a56b9bb525 /arch | |
parent | 132330f8044c8e0cfa83b5eee41ade52708390dc (diff) | |
download | linux-b8c1c9fe6a042dfbb169d14ab2000d9163f06d10.tar.xz |
arm64: entry: Fix the typo in the comment of el1_dbg()
The function name should be local_daif_mask().
Signed-off-by: Kevin Hao <haokexin@gmail.com>
Acked-by: Mark Rutlamd <mark.rutland@arm.com>
Link: https://lore.kernel.org/r/20200417103212.45812-2-haokexin@gmail.com
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm64/kernel/entry-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/kernel/entry-common.c b/arch/arm64/kernel/entry-common.c index 3dbdf9752b11..d3be9dbf5490 100644 --- a/arch/arm64/kernel/entry-common.c +++ b/arch/arm64/kernel/entry-common.c @@ -57,7 +57,7 @@ static void notrace el1_dbg(struct pt_regs *regs, unsigned long esr) /* * The CPU masked interrupts, and we are leaving them masked during * do_debug_exception(). Update PMR as if we had called - * local_mask_daif(). + * local_daif_mask(). */ if (system_uses_irq_prio_masking()) gic_write_pmr(GIC_PRIO_IRQON | GIC_PRIO_PSR_I_SET); |