Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0e192b99 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Thomas Gleixner
Browse files

x86: head_64.S cleanup - use PMD_SHIFT instead of numeric constant



Signed-off-by: default avatarCyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 05139d8f
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -325,7 +325,7 @@ ENTRY(name)
#define PMDS(START, PERM, COUNT)			\
	i = 0 ;						\
	.rept (COUNT) ;					\
	.quad	(START) + (i << 21) + (PERM) ;	\
	.quad	(START) + (i << PMD_SHIFT) + (PERM) ;	\
	i = i + 1 ;					\
	.endr