summaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/efi/ProcessorBind.h
blob: 535cd4ce0f9b5d536f9e5bb50f49d6d4f0f39709 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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 */