diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2009-08-19 16:18:56 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-09-15 12:01:56 -0700 |
commit | daaa8cc31fbd2b7356a0d67dd9ca6d336507f118 (patch) | |
tree | 899f198d1b4fa157a229397367e75f81dd69848a /drivers/staging/hv/VmbusPrivate.h | |
parent | caf26a31b51a148f70113700fd4f9860b5da3931 (diff) |
Staging: hv: osd.h: fix GUID reference problem
As GUID was a typedef, it hid the fact that we were passing it
a 2 variables in functions. This fixes this up by passing it
as a pointer, as it should be.
Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv/VmbusPrivate.h')
-rw-r--r-- | drivers/staging/hv/VmbusPrivate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/hv/VmbusPrivate.h b/drivers/staging/hv/VmbusPrivate.h index fed03606800..928735e2ed9 100644 --- a/drivers/staging/hv/VmbusPrivate.h +++ b/drivers/staging/hv/VmbusPrivate.h @@ -103,8 +103,8 @@ extern struct VMBUS_CONNECTION gVmbusConnection; /* General vmbus interface */ -struct hv_device *VmbusChildDeviceCreate(struct hv_guid deviceType, - struct hv_guid deviceInstance, +struct hv_device *VmbusChildDeviceCreate(struct hv_guid *deviceType, + struct hv_guid *deviceInstance, void *context); int VmbusChildDeviceAdd(struct hv_device *Device); |