[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 1/6] xen: Drop unused fastcall annotation
Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- CC: Jan Beulich <JBeulich@xxxxxxxx> --- xen/crypto/vmac.c | 3 --- xen/include/xen/config.h | 1 - 2 files changed, 4 deletions(-) diff --git a/xen/crypto/vmac.c b/xen/crypto/vmac.c index 8f2f372..f3f2743 100644 --- a/xen/crypto/vmac.c +++ b/xen/crypto/vmac.c @@ -173,15 +173,12 @@ const uint64_t mpoly = UINT64_C(0x1fffffff1fffffff); /* Poly key mask */ #if __GNUC__ #define ALIGN(n) __attribute__ ((aligned(n))) #define NOINLINE __attribute__ ((noinline)) -#define FASTCALL #elif _MSC_VER #define ALIGN(n) __declspec(align(n)) #define NOINLINE __declspec(noinline) -#define FASTCALL __fastcall #else #define ALIGN(n) #define NOINLINE -#define FASTCALL #endif /* ----------------------------------------------------------------------- */ diff --git a/xen/include/xen/config.h b/xen/include/xen/config.h index f7258c7..450be86 100644 --- a/xen/include/xen/config.h +++ b/xen/include/xen/config.h @@ -84,7 +84,6 @@ #define mk_unsigned_long(x) x #endif /* !__ASSEMBLY__ */ -#define fastcall #define __cpuinitdata #define __cpuinit -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |