arch: arm64: Remove unnecessary code in arm64_cpu_idle.S

Summary:
- I noticed that irq is enabled explicitly in arm64_cpu_idle.S
- The code is unnecessary since tasks, including the idle task,
  are created with irq enabled in up_initial_state()

Impact:
- Should be none

Testing:
- qemu-armv8a:netnsh_smp_hv with qemu-7.2.4

Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
This commit is contained in:
Masayuki Ishikawa 2023-10-18 14:37:58 +09:00 committed by Xiang Xiao
parent 3dbe2d790e
commit a98650f609

View File

@ -50,7 +50,6 @@ SECTION_FUNC(text, arch_cpu_idle)
#endif
dsb sy
wfi
msr daifclr, #(DAIFCLR_IRQ_BIT)
ret
GTEXT(arch_cpu_atomic_idle)