From: Milan Dadok Date: Wed, 28 Oct 2009 22:23:50 +0000 (+0100) Subject: Staging: hv: fix oops in vmbus - missing #include X-Git-Tag: v3.0~7051^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9fcfeab4e99c0e26df7426dbc6530d741934ed83;p=platform%2Fkernel%2Flinux-amlogic.git Staging: hv: fix oops in vmbus - missing #include Add missing #includes to make hv module compile successfull. Signed-off-by: Milan Dadok Cc: Hank Janssen Cc: Haiyang Zhang Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/hv/ChannelMgmt.h b/drivers/staging/hv/ChannelMgmt.h index 2782328..fa973d8 100644 --- a/drivers/staging/hv/ChannelMgmt.h +++ b/drivers/staging/hv/ChannelMgmt.h @@ -26,6 +26,7 @@ #define _CHANNEL_MGMT_H_ #include +#include #include "RingBuffer.h" #include "VmbusChannelInterface.h" #include "VmbusPacketFormat.h" diff --git a/drivers/staging/hv/osd.h b/drivers/staging/hv/osd.h index 9504604..ce064e8 100644 --- a/drivers/staging/hv/osd.h +++ b/drivers/staging/hv/osd.h @@ -25,6 +25,7 @@ #ifndef _OSD_H_ #define _OSD_H_ +#include /* Defines */ #define ALIGN_UP(value, align) (((value) & (align-1)) ? \