Commit bafbb8df authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Staging: hv: remove vmbus_on_event_dpc()

Just call VmbusOnEvents() as that's all the function did, so we can
remove it.

Cc: Haiyang Zhang <haiyangz@microsoft.com>
Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent cef6dbfa
...@@ -250,15 +250,6 @@ static void vmbus_on_msg_dpc(struct hv_driver *drv) ...@@ -250,15 +250,6 @@ static void vmbus_on_msg_dpc(struct hv_driver *drv)
} }
} }
/*
* vmbus_on_event_dpc - DPC routine to handle events from the hypervisior
*/
static void vmbus_on_event_dpc(struct hv_driver *drv)
{
/* TODO: Process any events */
VmbusOnEvents();
}
/* /*
* vmbus_on_isr - ISR routine * vmbus_on_isr - ISR routine
*/ */
...@@ -1039,10 +1030,8 @@ static void vmbus_msg_dpc(unsigned long data) ...@@ -1039,10 +1030,8 @@ static void vmbus_msg_dpc(unsigned long data)
*/ */
static void vmbus_event_dpc(unsigned long data) static void vmbus_event_dpc(unsigned long data)
{ {
struct hv_driver *driver = (struct hv_driver *)data;
/* Call to bus driver to handle interrupt */ /* Call to bus driver to handle interrupt */
vmbus_on_event_dpc(driver); VmbusOnEvents();
} }
static irqreturn_t vmbus_isr(int irq, void *dev_id) static irqreturn_t vmbus_isr(int irq, void *dev_id)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment