summaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/vmbus_api.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2010-12-02 08:47:11 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2010-12-02 08:47:11 -0800
commitc722bd3e2cb92be7afec346894faa29605436c1a (patch)
treef95868ab7341948c756ea20cb7814ad9b6023d9a /drivers/staging/hv/vmbus_api.h
parent4a1494fc101b05f895ef52b9d01769d382c5a6e2 (diff)
Staging: hv: remove OnEventDpc vmbus_driver callback
It's only ever set to one function, so just call that function instead. 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/vmbus_api.h')
-rw-r--r--drivers/staging/hv/vmbus_api.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/hv/vmbus_api.h b/drivers/staging/hv/vmbus_api.h
index 332a92d2cfd..31549c9579b 100644
--- a/drivers/staging/hv/vmbus_api.h
+++ b/drivers/staging/hv/vmbus_api.h
@@ -126,12 +126,12 @@ struct vmbus_driver {
struct hv_device *ChildDevice);
/* Set by the callee */
- void (*OnEventDpc)(struct hv_driver *driver);
void (*GetChannelOffers)(void);
};
int VmbusInitialize(struct hv_driver *drv);
int vmbus_on_isr(struct hv_driver *drv);
void vmbus_on_msg_dpc(struct hv_driver *drv);
+void vmbus_on_event_dpc(struct hv_driver *drv);
#endif /* _VMBUS_API_H_ */