diff options
| author | Milan Dadok <milan@dadok.name> | 2009-10-28 18:23:50 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-10-30 17:47:43 -0400 |
| commit | 9fcfeab4e99c0e26df7426dbc6530d741934ed83 (patch) | |
| tree | d1c4c81d182c010e79c6544e0dcd85ebc34b2354 | |
| parent | 92ec0893ad0996a534a5b605659d3ca31cf5dfd9 (diff) | |
Staging: hv: fix oops in vmbus - missing #include
Add missing #includes to make hv module compile successfull.
Signed-off-by: Milan Dadok <milan@dadok.name>
Cc: Hank Janssen <hjanssen@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
| -rw-r--r-- | drivers/staging/hv/ChannelMgmt.h | 1 | ||||
| -rw-r--r-- | drivers/staging/hv/osd.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/staging/hv/ChannelMgmt.h b/drivers/staging/hv/ChannelMgmt.h index 2782328c5f8b..fa973d86b624 100644 --- a/drivers/staging/hv/ChannelMgmt.h +++ b/drivers/staging/hv/ChannelMgmt.h | |||
| @@ -26,6 +26,7 @@ | |||
| 26 | #define _CHANNEL_MGMT_H_ | 26 | #define _CHANNEL_MGMT_H_ |
| 27 | 27 | ||
| 28 | #include <linux/list.h> | 28 | #include <linux/list.h> |
| 29 | #include <linux/timer.h> | ||
| 29 | #include "RingBuffer.h" | 30 | #include "RingBuffer.h" |
| 30 | #include "VmbusChannelInterface.h" | 31 | #include "VmbusChannelInterface.h" |
| 31 | #include "VmbusPacketFormat.h" | 32 | #include "VmbusPacketFormat.h" |
diff --git a/drivers/staging/hv/osd.h b/drivers/staging/hv/osd.h index 9504604c72bd..ce064e8ea644 100644 --- a/drivers/staging/hv/osd.h +++ b/drivers/staging/hv/osd.h | |||
| @@ -25,6 +25,7 @@ | |||
| 25 | #ifndef _OSD_H_ | 25 | #ifndef _OSD_H_ |
| 26 | #define _OSD_H_ | 26 | #define _OSD_H_ |
| 27 | 27 | ||
| 28 | #include <linux/workqueue.h> | ||
| 28 | 29 | ||
| 29 | /* Defines */ | 30 | /* Defines */ |
| 30 | #define ALIGN_UP(value, align) (((value) & (align-1)) ? \ | 31 | #define ALIGN_UP(value, align) (((value) & (align-1)) ? \ |
