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: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Greg Kroah-Hartman 2010-05-05 22:00:45 -07:00
Родитель 39c4e9c378
Коммит 733371df3d
2 изменённых файлов: 4 добавлений и 6 удалений

Просмотреть файл

@ -110,7 +110,7 @@ static void shutdown_onchannelcallback(void *context)
/*
* 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;
struct timespec host_ts;

Просмотреть файл

@ -87,12 +87,10 @@ struct shutdown_msg_data {
#define WLTIMEDELTA 116444736000000000LL
#endif
typedef u64 winfiletime_t; /* Windows FILETIME type */
struct ictimesync_data{
winfiletime_t parenttime;
winfiletime_t childtime;
winfiletime_t roundtriptime;
u64 parenttime;
u64 childtime;
u64 roundtriptime;
u8 flags;
} __attribute__((packed));