Commit 733371df authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Staging: hv: remove typedef that was just added.

It's a u64, so use a u64, it's not some special typedef.

Cc: Hank Janssen <hjanssen@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 39c4e9c3
...@@ -110,7 +110,7 @@ static void shutdown_onchannelcallback(void *context) ...@@ -110,7 +110,7 @@ static void shutdown_onchannelcallback(void *context)
/* /*
* Synchronize time with host after reboot, restore, etc. * Synchronize time with host after reboot, restore, etc.
*/ */
static void adj_guesttime(winfiletime_t hosttime, u8 flags) static void adj_guesttime(u64 hosttime, u8 flags)
{ {
s64 host_tns; s64 host_tns;
struct timespec host_ts; struct timespec host_ts;
......
...@@ -87,12 +87,10 @@ struct shutdown_msg_data { ...@@ -87,12 +87,10 @@ struct shutdown_msg_data {
#define WLTIMEDELTA 116444736000000000LL #define WLTIMEDELTA 116444736000000000LL
#endif #endif
typedef u64 winfiletime_t; /* Windows FILETIME type */
struct ictimesync_data{ struct ictimesync_data{
winfiletime_t parenttime; u64 parenttime;
winfiletime_t childtime; u64 childtime;
winfiletime_t roundtriptime; u64 roundtriptime;
u8 flags; u8 flags;
} __attribute__((packed)); } __attribute__((packed));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment