]> git.karo-electronics.de Git - linux-beck.git/blobdiff - drivers/staging/hv/channel_interface.c
Staging: hv: remove Close from struct vmbus_channel_interface
[linux-beck.git] / drivers / staging / hv / channel_interface.c
index b818bcf886aaaa0525c83fe4eb2566d3ce1ff236..49373dafa7038ecefeb9ef92482b91d18b3b3b04 100644 (file)
@@ -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,
 };