Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 228264
b: refs/heads/master
c: cef6dbf
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Dec 2, 2010
1 parent 6c8e588 commit cc57d90
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6d26e38fa2085ab3ba37a52e34caf46f8e049544
refs/heads/master: cef6dbfa8ef6b8c474e020a24758aa848a2632fa
4 changes: 0 additions & 4 deletions trunk/drivers/staging/hv/vmbus_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,4 @@ struct hv_device {
void *Extension;
};

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_ */
6 changes: 3 additions & 3 deletions trunk/drivers/staging/hv/vmbus_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ static void VmbusOnCleanup(struct hv_driver *drv)
/*
* vmbus_on_msg_dpc - DPC routine to handle messages from the hypervisior
*/
void vmbus_on_msg_dpc(struct hv_driver *drv)
static void vmbus_on_msg_dpc(struct hv_driver *drv)
{
int cpu = smp_processor_id();
void *page_addr = hv_context.synic_message_page[cpu];
Expand Down Expand Up @@ -253,7 +253,7 @@ void vmbus_on_msg_dpc(struct hv_driver *drv)
/*
* vmbus_on_event_dpc - DPC routine to handle events from the hypervisior
*/
void vmbus_on_event_dpc(struct hv_driver *drv)
static void vmbus_on_event_dpc(struct hv_driver *drv)
{
/* TODO: Process any events */
VmbusOnEvents();
Expand All @@ -262,7 +262,7 @@ void vmbus_on_event_dpc(struct hv_driver *drv)
/*
* vmbus_on_isr - ISR routine
*/
int vmbus_on_isr(struct hv_driver *drv)
static int vmbus_on_isr(struct hv_driver *drv)
{
int ret = 0;
int cpu = smp_processor_id();
Expand Down

0 comments on commit cc57d90

Please sign in to comment.