Skip to content

Commit

Permalink
Staging: hv: fix oops in vmbus - missing #include
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Milan Dadok authored and Greg Kroah-Hartman committed Oct 30, 2009
1 parent 92ec089 commit 9fcfeab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions drivers/staging/hv/ChannelMgmt.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 1 addition & 0 deletions drivers/staging/hv/osd.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#ifndef _OSD_H_
#define _OSD_H_

#include <linux/workqueue.h>

/* Defines */
#define ALIGN_UP(value, align) (((value) & (align-1)) ? \
Expand Down

0 comments on commit 9fcfeab

Please sign in to comment.