staging: unisys: remove S64 type

This patch switches all use of the S64 typedef to use the kernel's s64 type
instead.

Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Benjamin Romer 2014-07-31 12:00:55 -04:00 committed by Greg Kroah-Hartman
parent c14f13ba30
commit ec03a7db32
3 changed files with 4 additions and 6 deletions

View file

@ -30,8 +30,6 @@
#include <syslog.h>
#endif
#define S64 int64_t
#ifdef __KERNEL__
#ifdef CONFIG_X86_32

View file

@ -262,7 +262,7 @@ Issue_VMCALL_IO_VISORSERIAL_ADDR(u64 *DiagChannelAddress)
return result;
}
static inline S64 Issue_VMCALL_QUERY_GUEST_VIRTUAL_TIME_OFFSET(void)
static inline s64 Issue_VMCALL_QUERY_GUEST_VIRTUAL_TIME_OFFSET(void)
{
u64 result = VMCALL_SUCCESS;
u64 physaddr = 0;
@ -272,7 +272,7 @@ static inline S64 Issue_VMCALL_QUERY_GUEST_VIRTUAL_TIME_OFFSET(void)
return result;
}
static inline S64 Issue_VMCALL_MEASUREMENT_DO_NOTHING(void)
static inline s64 Issue_VMCALL_MEASUREMENT_DO_NOTHING(void)
{
u64 result = VMCALL_SUCCESS;
u64 physaddr = 0;

View file

@ -190,8 +190,8 @@ visorchipset_ioctl(struct inode *inode, struct file *file,
#endif
{
int rc = SUCCESS;
S64 adjustment;
S64 vrtc_offset;
s64 adjustment;
s64 vrtc_offset;
DBGINF("entered visorchipset_ioctl, cmd=%d", cmd);
switch (cmd) {
case VMCALL_QUERY_GUEST_VIRTUAL_TIME_OFFSET: