aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2010-10-21 09:34:43 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2010-10-21 09:34:43 -0700
commitb3289aa819979dc75c169e15515ce3d2f0576e71 (patch)
tree3329fca158c7c69549f054811660c3041d322aa8 /drivers/staging/hv
parentStaging: hv: netvsc: call vmbus_sendpacket_pagebuffer directly (diff)
downloadlinux-dev-b3289aa819979dc75c169e15515ce3d2f0576e71.tar.xz
linux-dev-b3289aa819979dc75c169e15515ce3d2f0576e71.zip
Staging: hv: remove SendPacketPageBuffer 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')
-rw-r--r--drivers/staging/hv/channel_interface.c11
-rw-r--r--drivers/staging/hv/vmbus_api.h5
2 files changed, 0 insertions, 16 deletions
diff --git a/drivers/staging/hv/channel_interface.c b/drivers/staging/hv/channel_interface.c
index 4032e9c46f20..a288b70b13c0 100644
--- a/drivers/staging/hv/channel_interface.c
+++ b/drivers/staging/hv/channel_interface.c
@@ -49,20 +49,9 @@ static int ivmbus_sendpacket(struct hv_device *device, const void *buffer,
requestid, type, flags);
}
-static int ivmbus_sendpacket_pagebuffer(struct hv_device *device,
- struct hv_page_buffer pagebuffers[],
- u32 pagecount, void *buffer,
- u32 bufferlen, u64 requestid)
-{
- return vmbus_sendpacket_pagebuffer(device->channel, pagebuffers,
- pagecount, buffer, bufferlen,
- requestid);
-}
-
/* vmbus interface function pointer table */
const struct vmbus_channel_interface vmbus_ops = {
.Open = ivmbus_open,
.Close = ivmbus_close,
.SendPacket = ivmbus_sendpacket,
- .SendPacketPageBuffer = ivmbus_sendpacket_pagebuffer,
};
diff --git a/drivers/staging/hv/vmbus_api.h b/drivers/staging/hv/vmbus_api.h
index 6ff0de3e6708..9fe983043574 100644
--- a/drivers/staging/hv/vmbus_api.h
+++ b/drivers/staging/hv/vmbus_api.h
@@ -89,7 +89,6 @@ struct hv_device_info {
* @Open: Open the channel
* @Close: Close the channel
* @SendPacket: Send a packet over the channel
- * @SendPacketPageBuffer: Send a single page buffer over the channel
*
* This structure contains function pointer to control vmbus channel
* behavior. None of these functions is externally callable, but they
@@ -104,10 +103,6 @@ struct vmbus_channel_interface {
void (*Close)(struct hv_device *device);
int (*SendPacket)(struct hv_device *Device, const void *Buffer,
u32 BufferLen, u64 RequestId, u32 Type, u32 Flags);
- int (*SendPacketPageBuffer)(struct hv_device *dev,
- struct hv_page_buffer PageBuffers[],
- u32 PageCount, void *Buffer, u32 BufferLen,
- u64 RequestId);
};
extern const struct vmbus_channel_interface vmbus_ops;