Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec03a7db authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman
Browse files

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: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c14f13ba
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -30,8 +30,6 @@
#include <syslog.h>
#endif

#define S64 int64_t

#ifdef __KERNEL__

#ifdef CONFIG_X86_32
+2 −2
Original line number Diff line number Diff line
@@ -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;
+2 −2
Original line number Diff line number Diff line
@@ -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: