aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/vmbus_api.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2010-12-02 11:41:05 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2010-12-02 11:41:05 -0500
commit097e310329fb69c928aa44b517a547e4a17658fd (patch)
treef3204f99721f46a7c69d51f84f9e3e039be0fda1 /drivers/staging/hv/vmbus_api.h
parent9d8bd71ad4f295f80450b5089d239c3135802699 (diff)
Staging: hv: remove OnIsr 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 59742800b06..d0c30a725c7 100644
--- a/drivers/staging/hv/vmbus_api.h
+++ b/drivers/staging/hv/vmbus_api.h
@@ -126,12 +126,12 @@ struct vmbus_driver {
126 struct hv_device *ChildDevice); 126 struct hv_device *ChildDevice);
127 127
128 /* Set by the callee */ 128 /* Set by the callee */
129 int (*OnIsr)(struct hv_driver *driver);
130 void (*OnMsgDpc)(struct hv_driver *driver); 129 void (*OnMsgDpc)(struct hv_driver *driver);
131 void (*OnEventDpc)(struct hv_driver *driver); 130 void (*OnEventDpc)(struct hv_driver *driver);
132 void (*GetChannelOffers)(void); 131 void (*GetChannelOffers)(void);
133}; 132};
134 133
135int VmbusInitialize(struct hv_driver *drv); 134int VmbusInitialize(struct hv_driver *drv);
135int vmbus_on_isr(struct hv_driver *drv);
136 136
137#endif /* _VMBUS_API_H_ */ 137#endif /* _VMBUS_API_H_ */