diff options
Diffstat (limited to 'drivers/hv/hv.c')
-rw-r--r-- | drivers/hv/hv.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/hv/hv.c b/drivers/hv/hv.c index 3648f8f0f368..dd0af8940657 100644 --- a/drivers/hv/hv.c +++ b/drivers/hv/hv.c | |||
@@ -273,13 +273,12 @@ int hv_post_message(union hv_connection_id connection_id, | |||
273 | * | 273 | * |
274 | * This involves a hypercall. | 274 | * This involves a hypercall. |
275 | */ | 275 | */ |
276 | u16 hv_signal_event(void) | 276 | u16 hv_signal_event(void *con_id) |
277 | { | 277 | { |
278 | u16 status; | 278 | u16 status; |
279 | 279 | ||
280 | status = do_hypercall(HVCALL_SIGNAL_EVENT, | 280 | status = (do_hypercall(HVCALL_SIGNAL_EVENT, con_id, NULL) & 0xFFFF); |
281 | hv_context.signal_event_param, | 281 | |
282 | NULL) & 0xFFFF; | ||
283 | return status; | 282 | return status; |
284 | } | 283 | } |
285 | 284 | ||