summaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/channel.c
diff options
context:
space:
mode:
authorK. Y. Srinivasan <kys@microsoft.com>2011-08-25 09:48:28 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2011-08-25 10:23:06 -0700
commit358d2ee2e8f5c25f1661e94c206102c88fdee370 (patch)
treed4afbf23c2fbe9abf7811d6309af850767e70e5a /drivers/staging/hv/channel.c
parent32a753ffb2c5aea6c32d34393a8e0da3ecfd78bb (diff)
downloadlinux-stable-358d2ee2e8f5c25f1661e94c206102c88fdee370.tar.gz
linux-stable-358d2ee2e8f5c25f1661e94c206102c88fdee370.tar.bz2
linux-stable-358d2ee2e8f5c25f1661e94c206102c88fdee370.zip
Staging: hv: Replace struct hv_guid with the uuid type already defined in Linux
Replace struct hv_guid with the uuid type already defined in Linux. Signed-off-by: K. Y. Srinivasan <kys@microsoft.com> Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv/channel.c')
-rw-r--r--drivers/staging/hv/channel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/hv/channel.c b/drivers/staging/hv/channel.c
index 455f47a891f1..222adcc24c71 100644
--- a/drivers/staging/hv/channel.c
+++ b/drivers/staging/hv/channel.c
@@ -81,10 +81,10 @@ void vmbus_get_debug_info(struct vmbus_channel *channel,
debuginfo->relid = channel->offermsg.child_relid;
debuginfo->state = channel->state;
memcpy(&debuginfo->interfacetype,
- &channel->offermsg.offer.if_type, sizeof(struct hv_guid));
+ &channel->offermsg.offer.if_type, sizeof(uuid_le));
memcpy(&debuginfo->interface_instance,
&channel->offermsg.offer.if_instance,
- sizeof(struct hv_guid));
+ sizeof(uuid_le));
monitorpage = (struct hv_monitor_page *)vmbus_connection.monitor_pages;