arm64: fix typo in entry.S

Commit 64681787 (arm64: let the core code deal with preempt_count)
changed the code, but left the comments unchanged, fix it.

Signed-off-by: Neil Zhang <zhangwm@marvell.com>
Acked-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>

authored by Neil Zhang and committed by Catalin Marinas 883c0573 65c021bb

+1 -1
+1 -1
arch/arm64/kernel/entry.S
··· 316 317 #ifdef CONFIG_PREEMPT 318 get_thread_info tsk 319 - ldr w24, [tsk, #TI_PREEMPT] // restore preempt count 320 cbnz w24, 1f // preempt count != 0 321 ldr x0, [tsk, #TI_FLAGS] // get flags 322 tbz x0, #TIF_NEED_RESCHED, 1f // needs rescheduling?
··· 316 317 #ifdef CONFIG_PREEMPT 318 get_thread_info tsk 319 + ldr w24, [tsk, #TI_PREEMPT] // get preempt count 320 cbnz w24, 1f // preempt count != 0 321 ldr x0, [tsk, #TI_FLAGS] // get flags 322 tbz x0, #TIF_NEED_RESCHED, 1f // needs rescheduling?