diff options
author | Greg Kroah-Hartman <[email protected]> | 2010-12-02 12:12:46 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2010-12-02 12:12:46 -0800 |
commit | bafbb8df076de1e3b63914473a403fba96b88f3c (patch) | |
tree | d60530860a361b9ca9de34ea86ce5529271cee5a | |
parent | cef6dbfa8ef6b8c474e020a24758aa848a2632fa (diff) |
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 <[email protected]>
Cc: Hank Janssen <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/hv/vmbus_drv.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/staging/hv/vmbus_drv.c b/drivers/staging/hv/vmbus_drv.c index f623b57c59d0..d794b603bf17 100644 --- a/drivers/staging/hv/vmbus_drv.c +++ b/drivers/staging/hv/vmbus_drv.c @@ -251,15 +251,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 */ static int vmbus_on_isr(struct hv_driver *drv) @@ -1039,10 +1030,8 @@ static void vmbus_msg_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 */ - vmbus_on_event_dpc(driver); + VmbusOnEvents(); } static irqreturn_t vmbus_isr(int irq, void *dev_id) |