2
0
mirror of https://github.com/xcat2/xNBA.git synced 2026-03-25 15:53:29 +00:00
Files
xNBA/src/include/ipxe/efi/ProcessorBind.h
Michael Brown bf2b1c8e47 [efi] Tidy up output of EFI header import script
Signed-off-by: Michael Brown <mcb30@ipxe.org>
2010-05-29 23:49:47 +01:00

20 lines
447 B
C

#ifndef _IPXE_EFI_PROCESSOR_BIND_H
#define _IPXE_EFI_PROCESSOR_BIND_H
/*
* EFI header files rely on having the CPU architecture directory
* present in the search path in order to pick up ProcessorBind.h. We
* use this header file as a quick indirection layer.
* - mcb30
*/
#if __i386__
#include <ipxe/efi/Ia32/ProcessorBind.h>
#endif
#if __x86_64__
#include <ipxe/efi/X64/ProcessorBind.h>
#endif
#endif /* _IPXE_EFI_PROCESSOR_BIND_H */