Skip to content

Commit

Permalink
Staging: hv: remove RecvPacket from struct vmbus_channel_interface
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Greg Kroah-Hartman committed Oct 21, 2010
1 parent 50ea95d commit 22ff5c9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
9 changes: 0 additions & 9 deletions drivers/staging/hv/channel_interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,20 +68,11 @@ static int ivmbus_sendpacket_multipagebuffer(struct hv_device *device,
bufferlen, requestid);
}

static int ivmbus_recvpacket(struct hv_device *device, void *buffer,
u32 bufferlen, u32 *buffer_actuallen,
u64 *requestid)
{
return vmbus_recvpacket(device->channel, buffer, bufferlen,
buffer_actuallen, 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,
.SendPacketMultiPageBuffer = ivmbus_sendpacket_multipagebuffer,
.RecvPacket = ivmbus_recvpacket,
};
3 changes: 0 additions & 3 deletions drivers/staging/hv/vmbus_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ struct hv_device_info {
* @SendPacket: Send a packet over the channel
* @SendPacketPageBuffer: Send a single page buffer over the channel
* @SendPacketMultiPageBuffer: Send a multiple page buffers
* @RecvPacket: Receive packet
*
* This structure contains function pointer to control vmbus channel
* behavior. None of these functions is externally callable, but they
Expand All @@ -115,8 +114,6 @@ struct vmbus_channel_interface {
void *Buffer,
u32 BufferLen,
u64 RequestId);
int (*RecvPacket)(struct hv_device *dev, void *buf, u32 buflen,
u32 *BufferActualLen, u64 *RequestId);
};

extern const struct vmbus_channel_interface vmbus_ops;
Expand Down

0 comments on commit 22ff5c9

Please sign in to comment.