summaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/Hv.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman2009-08-20 01:17:03 +0200
committerGreg Kroah-Hartman2009-09-15 21:01:56 +0200
commitcaf26a31b51a148f70113700fd4f9860b5da3931 (patch)
tree3409b37bf85a952830cb423baa76b09ae7a19d85 /drivers/staging/hv/Hv.h
parentStaging: hv: osd.h: codingstyle cleanups (diff)
downloadkernel-qcow2-linux-caf26a31b51a148f70113700fd4f9860b5da3931.tar.gz
kernel-qcow2-linux-caf26a31b51a148f70113700fd4f9860b5da3931.tar.xz
kernel-qcow2-linux-caf26a31b51a148f70113700fd4f9860b5da3931.zip
Staging: hv: osd.h: remove GUID typedef
GUID should not be a typedef. As proof of the problem of typedefs, look, we are passing 2 of these as a value in functions! Bah... Cc: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv/Hv.h')
-rw-r--r--drivers/staging/hv/Hv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/hv/Hv.h b/drivers/staging/hv/Hv.h
index 6df388d741ae..8058a534efcd 100644
--- a/drivers/staging/hv/Hv.h
+++ b/drivers/staging/hv/Hv.h
@@ -92,8 +92,8 @@ enum {
/* #define VMBUS_PORT_ID 11 */
/* 628180B8-308D-4c5e-B7DB-1BEB62E62EF4 */
-static const GUID VMBUS_SERVICE_ID = {
- .Data = {
+static const struct hv_guid VMBUS_SERVICE_ID = {
+ .data = {
0xb8, 0x80, 0x81, 0x62, 0x8d, 0x30, 0x5e, 0x4c,
0xb7, 0xdb, 0x1b, 0xeb, 0x62, 0xe6, 0x2e, 0xf4
},