ia64/xen: Remove Xen support for ia64
[deliverable/linux.git] / include / xen / interface / io / protocols.h
CommitLineData
3e334239
MA
1#ifndef __XEN_PROTOCOLS_H__
2#define __XEN_PROTOCOLS_H__
3
4#define XEN_IO_PROTO_ABI_X86_32 "x86_32-abi"
5#define XEN_IO_PROTO_ABI_X86_64 "x86_64-abi"
3e334239 6#define XEN_IO_PROTO_ABI_POWERPC64 "powerpc64-abi"
e79affc3 7#define XEN_IO_PROTO_ABI_ARM "arm-abi"
3e334239
MA
8
9#if defined(__i386__)
10# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_X86_32
11#elif defined(__x86_64__)
12# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_X86_64
3e334239
MA
13#elif defined(__powerpc64__)
14# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_POWERPC64
ea9c3652 15#elif defined(__arm__) || defined(__aarch64__)
e79affc3 16# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_ARM
3e334239
MA
17#else
18# error arch fixup needed here
19#endif
20
21#endif
This page took 0.345929 seconds and 5 git commands to generate.