diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2009-08-20 12:17:36 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-09-15 12:01:58 -0700 |
commit | ee3d7ddfe54108e2e1e3259fb62ec085404c3a74 (patch) | |
tree | c4777e10194096f411a98908aa2cf90e4d1f2c7a /drivers/staging/hv/ChannelInterface.h | |
parent | 54b2b847f522eb2c015455bd592a7214972f4d6c (diff) |
Staging: hv: typedef removal for VmbusApi.h
The function pointers still have ugly names, but the structures
are now cleaned up.
Note, a comment was added where the driver structure is pointing
at a problem that needs to be fixed up later in the code.
Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv/ChannelInterface.h')
-rw-r--r-- | drivers/staging/hv/ChannelInterface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/hv/ChannelInterface.h b/drivers/staging/hv/ChannelInterface.h index 49a7c7d1c1c9..e24f7365ede7 100644 --- a/drivers/staging/hv/ChannelInterface.h +++ b/drivers/staging/hv/ChannelInterface.h @@ -27,8 +27,8 @@ #include "include/VmbusApi.h" -void GetChannelInterface(VMBUS_CHANNEL_INTERFACE *ChannelInterface); +void GetChannelInterface(struct vmbus_channel_interface *ChannelInterface); -void GetChannelInfo(struct hv_device *Device, DEVICE_INFO *DeviceInfo); +void GetChannelInfo(struct hv_device *Device, struct hv_device_info *DeviceInfo); #endif /* _CHANNEL_INTERFACE_H_ */ |