aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/vmbus_api.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2010-10-21 12:28:30 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-10-21 12:28:30 -0400
commit58d53f9e73c9e752d458f3444b587a91481e3ae2 (patch)
tree108a4c6a2599f9075ec0142788ad7b1412180196 /drivers/staging/hv/vmbus_api.h
parent51255071af2feeb753ee3d90981869bef1566552 (diff)
Staging: hv: remove SendPacketMultiPageBuffer from struct vmbus_channel_interface
No one calls it anymore, so remove it. Cc: Haiyang Zhang <haiyangz@microsoft.com> Cc: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv/vmbus_api.h')
-rw-r--r--drivers/staging/hv/vmbus_api.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/staging/hv/vmbus_api.h b/drivers/staging/hv/vmbus_api.h
index 3f727d9b06c..6ff0de3e670 100644
--- a/drivers/staging/hv/vmbus_api.h
+++ b/drivers/staging/hv/vmbus_api.h
@@ -90,7 +90,6 @@ struct hv_device_info {
90 * @Close: Close the channel 90 * @Close: Close the channel
91 * @SendPacket: Send a packet over the channel 91 * @SendPacket: Send a packet over the channel
92 * @SendPacketPageBuffer: Send a single page buffer over the channel 92 * @SendPacketPageBuffer: Send a single page buffer over the channel
93 * @SendPacketMultiPageBuffer: Send a multiple page buffers
94 * 93 *
95 * This structure contains function pointer to control vmbus channel 94 * This structure contains function pointer to control vmbus channel
96 * behavior. None of these functions is externally callable, but they 95 * behavior. None of these functions is externally callable, but they
@@ -109,11 +108,6 @@ struct vmbus_channel_interface {
109 struct hv_page_buffer PageBuffers[], 108 struct hv_page_buffer PageBuffers[],
110 u32 PageCount, void *Buffer, u32 BufferLen, 109 u32 PageCount, void *Buffer, u32 BufferLen,
111 u64 RequestId); 110 u64 RequestId);
112 int (*SendPacketMultiPageBuffer)(struct hv_device *device,
113 struct hv_multipage_buffer *mpb,
114 void *Buffer,
115 u32 BufferLen,
116 u64 RequestId);
117}; 111};
118 112
119extern const struct vmbus_channel_interface vmbus_ops; 113extern const struct vmbus_channel_interface vmbus_ops;