diff options
author | Milan Dadok <milan@dadok.name> | 2009-10-28 23:23:50 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-10-30 14:47:43 -0700 |
commit | 9fcfeab4e99c0e26df7426dbc6530d741934ed83 (patch) | |
tree | d1c4c81d182c010e79c6544e0dcd85ebc34b2354 /drivers/staging | |
parent | 92ec0893ad0996a534a5b605659d3ca31cf5dfd9 (diff) | |
download | linux-9fcfeab4e99c0e26df7426dbc6530d741934ed83.tar.gz linux-9fcfeab4e99c0e26df7426dbc6530d741934ed83.tar.bz2 linux-9fcfeab4e99c0e26df7426dbc6530d741934ed83.zip |
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>
Diffstat (limited to 'drivers/staging')
-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 @@ #define _CHANNEL_MGMT_H_ #include <linux/list.h> +#include <linux/timer.h> #include "RingBuffer.h" #include "VmbusChannelInterface.h" #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 @@ #ifndef _OSD_H_ #define _OSD_H_ +#include <linux/workqueue.h> /* Defines */ #define ALIGN_UP(value, align) (((value) & (align-1)) ? \ |