summaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/channel_interface.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2010-10-21 09:54:42 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2010-10-21 09:54:42 -0700
commitba9bf63080bea106e91e4639cea8940b9b3851a1 (patch)
treea5e7608d08f0f5aeeacdc6149405150bcb4cc28d /drivers/staging/hv/channel_interface.c
parent1fb9dff04c97398c4c10a97037aa1c3505663153 (diff)
Staging: hv: remove Close 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/channel_interface.c')
-rw-r--r--drivers/staging/hv/channel_interface.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/staging/hv/channel_interface.c b/drivers/staging/hv/channel_interface.c
index b818bcf886a..49373dafa70 100644
--- a/drivers/staging/hv/channel_interface.c
+++ b/drivers/staging/hv/channel_interface.c
@@ -36,13 +36,7 @@ static int ivmbus_open(struct hv_device *device, u32 sendbuffer_size,
channel_callback, context);
}
-static void ivmbus_close(struct hv_device *device)
-{
- vmbus_close(device->channel);
-}
-
/* vmbus interface function pointer table */
const struct vmbus_channel_interface vmbus_ops = {
.Open = ivmbus_open,
- .Close = ivmbus_close,
};