Staging: hv: vmbus: Get rid of the unused function vmbus_ontimer()

Now, get rid of the unused function vmbus_ontimer().

Signed-off-by: K. Y. Srinivasan <[email protected]>
Signed-off-by: Haiyang Zhang <[email protected]>
Signed-off-by: Abhishek Kane <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
This commit is contained in:
K. Y. Srinivasan
2011-06-07 13:45:57 -07:00
committed by Greg Kroah-Hartman
parent e690b5a9be
commit 30fbee49b0
-12
View File
@@ -874,15 +874,3 @@ int vmbus_recvpacket_raw(struct vmbus_channel *channel, void *buffer,
return 0;
}
EXPORT_SYMBOL_GPL(vmbus_recvpacket_raw);
/*
* vmbus_ontimer - Timer event callback
*/
void vmbus_ontimer(unsigned long data)
{
struct vmbus_channel *channel = (struct vmbus_channel *)data;
if (channel->onchannel_callback)
channel->onchannel_callback(channel->channel_callback_context);
}