Commit c27cfeff authored by Glauber Costa's avatar Glauber Costa Committed by Ingo Molnar
Browse files

x86: commonize smp.h



this is the first step of integrating smp.h between x86_64
and i386

Signed-off-by: default avatarGlauber Costa <gcosta@redhat.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 8b6451fe
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
#ifndef _ASM_X86_SMP_H_
#define _ASM_X86_SMP_H_
#ifndef __ASSEMBLY__

#ifdef CONFIG_X86_32
# include "smp_32.h"
#else
# include "smp_64.h"
#endif

#endif /* __ASSEMBLY__ */
#endif