summaryrefslogtreecommitdiff
path: root/drivers/block/virtio_blk.c
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2011-07-01 19:56:05 (GMT)
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-10-31 23:31:13 (GMT)
commit0c8d44f239b453517d25d0fcfd2737bb5cb34ef8 (patch)
treeddd9da6086f67462e7a323e3eefaa974cb7908c1 /drivers/block/virtio_blk.c
parentd5decd3b9512e35c87492312a72443192eebdda9 (diff)
downloadlinux-0c8d44f239b453517d25d0fcfd2737bb5cb34ef8.tar.xz
block: Fix files that are modules and hence need module.h
We want to remove the implicit everywhere presence of module.h so fix up the people relying on that implicit presence in advance. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/block/virtio_blk.c')
-rw-r--r--drivers/block/virtio_blk.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
index 079c088..aa7094f 100644
--- a/drivers/block/virtio_blk.c
+++ b/drivers/block/virtio_blk.c
@@ -3,6 +3,7 @@
#include <linux/slab.h>
#include <linux/blkdev.h>
#include <linux/hdreg.h>
+#include <linux/module.h>
#include <linux/virtio.h>
#include <linux/virtio_blk.h>
#include <linux/scatterlist.h>