aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2010-10-21 10:00:19 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2010-10-21 10:00:19 -0700
commit036a257b0d6809988f9d3fb01e01c358ca8c45de (patch)
treeed1be80467df76b8912764b9a050c666e18cd274 /drivers/staging/hv
parentStaging: hv: storvsc: call vmbus_open directly (diff)
downloadlinux-dev-036a257b0d6809988f9d3fb01e01c358ca8c45de.tar.xz
linux-dev-036a257b0d6809988f9d3fb01e01c358ca8c45de.zip
Staging: hv: remove Open 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.c12
-rw-r--r--drivers/staging/hv/vmbus_api.h5
2 files changed, 0 insertions, 17 deletions
diff --git a/drivers/staging/hv/channel_interface.c b/drivers/staging/hv/channel_interface.c
index 49373dafa703..8f75963b49b4 100644
--- a/drivers/staging/hv/channel_interface.c
+++ b/drivers/staging/hv/channel_interface.c
@@ -25,18 +25,6 @@
#include "osd.h"
#include "vmbus_private.h"
-static int ivmbus_open(struct hv_device *device, u32 sendbuffer_size,
- u32 recv_ringbuffer_size, void *userdata,
- u32 userdatalen,
- void (*channel_callback)(void *context),
- void *context)
-{
- return vmbus_open(device->channel, sendbuffer_size,
- recv_ringbuffer_size, userdata, userdatalen,
- channel_callback, context);
-}
-
/* vmbus interface function pointer table */
const struct vmbus_channel_interface vmbus_ops = {
- .Open = ivmbus_open,
};
diff --git a/drivers/staging/hv/vmbus_api.h b/drivers/staging/hv/vmbus_api.h
index 42050a1e3f0e..79a906f3e48c 100644
--- a/drivers/staging/hv/vmbus_api.h
+++ b/drivers/staging/hv/vmbus_api.h
@@ -86,7 +86,6 @@ struct hv_device_info {
/**
* struct vmbus_channel_interface - Contains member functions for vmbus channel
- * @Open: Open the channel
*
* This structure contains function pointer to control vmbus channel
* behavior. None of these functions is externally callable, but they
@@ -94,10 +93,6 @@ struct hv_device_info {
* Only used by Hyper-V drivers.
*/
struct vmbus_channel_interface {
- int (*Open)(struct hv_device *Device, u32 SendBufferSize,
- u32 RecvRingBufferSize, void *UserData, u32 UserDataLen,
- void (*ChannelCallback)(void *context),
- void *Context);
};
extern const struct vmbus_channel_interface vmbus_ops;