Commit b24413180f5600 ("License cleanup: add SPDX GPL-2.0 license identifier to files with no license") was meant to do a tree-wide cleanup for files without any license information by adding a SPDX GPL-2.0 line to them. Unfortunately this was applied even to several Xen-related headers which have been originally under the MIT license, but obviously have been copied to the Linux tree from the Xen project without keeping the license boiler plate as required. Correct that by changing the license of those files back to "MIT". Some files still contain the MIT license text. Replace that by the related SPDX line. Signed-off-by: Juergen Gross <jgross@suse.com> Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com> Link: https://lore.kernel.org/r/20211015143312.29900-1-jgross@suse.com Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
23 lines
693 B
C
23 lines
693 B
C
/* SPDX-License-Identifier: MIT */
|
|
#ifndef __XEN_PROTOCOLS_H__
|
|
#define __XEN_PROTOCOLS_H__
|
|
|
|
#define XEN_IO_PROTO_ABI_X86_32 "x86_32-abi"
|
|
#define XEN_IO_PROTO_ABI_X86_64 "x86_64-abi"
|
|
#define XEN_IO_PROTO_ABI_POWERPC64 "powerpc64-abi"
|
|
#define XEN_IO_PROTO_ABI_ARM "arm-abi"
|
|
|
|
#if defined(__i386__)
|
|
# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_X86_32
|
|
#elif defined(__x86_64__)
|
|
# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_X86_64
|
|
#elif defined(__powerpc64__)
|
|
# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_POWERPC64
|
|
#elif defined(__arm__) || defined(__aarch64__)
|
|
# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_ARM
|
|
#else
|
|
# error arch fixup needed here
|
|
#endif
|
|
|
|
#endif
|