aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/hv/include/vmbus.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2009-08-19 16:17:03 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-15 12:01:56 -0700
commitcaf26a31b51a148f70113700fd4f9860b5da3931 (patch)
tree3409b37bf85a952830cb423baa76b09ae7a19d85 /drivers/staging/hv/include/vmbus.h
parent0ccafb365803b3256aa75fd07bf9e5c6814a260d (diff)
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/include/vmbus.h')
-rw-r--r--drivers/staging/hv/include/vmbus.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/hv/include/vmbus.h b/drivers/staging/hv/include/vmbus.h
index 6f7eecb4b83..2ea6ce0703c 100644
--- a/drivers/staging/hv/include/vmbus.h
+++ b/drivers/staging/hv/include/vmbus.h
@@ -37,7 +37,7 @@ typedef int (*PFN_DRIVERINITIALIZE)(struct hv_driver *drv);
typedef int (*PFN_DRIVEREXIT)(struct hv_driver *drv);
struct driver_context {
- GUID class_id;
+ struct hv_guid class_id;
struct device_driver driver;
@@ -49,8 +49,8 @@ struct driver_context {
struct device_context {
struct work_struct probe_failed_work_item;
- GUID class_id;
- GUID device_id;
+ struct hv_guid class_id;
+ struct hv_guid device_id;
int probe_error;
struct device device;
struct hv_device device_obj;