staging: unisys: remove check for GNUC

The check for GNUC is redundant and is not needed for vmcallinterface.h.

Signed-off-by: David Kershner <david.kershner@unisys.com>
Reviewed-by: Tim Sell <Timothy.Sell@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
David Kershner 2016-09-02 16:41:43 -04:00 committed by Greg Kroah-Hartman
parent dca0a14df1
commit 7f5780a266

View file

@ -85,7 +85,6 @@ enum vmcall_monitor_interface_method_tuple { /* VMCALL identification tuples */
#define VMCALL_SUCCESS 0 #define VMCALL_SUCCESS 0
#define VMCALL_SUCCESSFUL(result) (result == 0) #define VMCALL_SUCCESSFUL(result) (result == 0)
#ifdef __GNUC__
#define unisys_vmcall(tuple, reg_ebx, reg_ecx) \ #define unisys_vmcall(tuple, reg_ebx, reg_ecx) \
__unisys_vmcall_gnuc(tuple, reg_ebx, reg_ecx) __unisys_vmcall_gnuc(tuple, reg_ebx, reg_ecx)
#define unisys_extended_vmcall(tuple, reg_ebx, reg_ecx, reg_edx) \ #define unisys_extended_vmcall(tuple, reg_ebx, reg_ecx, reg_edx) \
@ -102,7 +101,6 @@ enum vmcall_monitor_interface_method_tuple { /* VMCALL identification tuples */
#define ISSUE_IO_VMCALL_POSTCODE_SEVERITY(postcode, severity) \ #define ISSUE_IO_VMCALL_POSTCODE_SEVERITY(postcode, severity) \
ISSUE_IO_EXTENDED_VMCALL(VMCALL_POST_CODE_LOGEVENT, severity, \ ISSUE_IO_EXTENDED_VMCALL(VMCALL_POST_CODE_LOGEVENT, severity, \
MDS_APPOS, postcode) MDS_APPOS, postcode)
#endif
/* Structures for IO VMCALLs */ /* Structures for IO VMCALLs */