block: Fix files that are modules and hence need module.h
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Fri, 1 Jul 2011 19:56:05 +0000 (15:56 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Mon, 31 Oct 2011 23:31:13 +0000 (19:31 -0400)
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>
drivers/block/ps3disk.c
drivers/block/ps3vram.c
drivers/block/virtio_blk.c

index 8e1ce2e2916a72cdeff49a8fa46f2179d04691dd..da0abc1838c196680bd093f0664924140ae4834f 100644 (file)
@@ -21,6 +21,7 @@
 #include <linux/ata.h>
 #include <linux/blkdev.h>
 #include <linux/slab.h>
+#include <linux/module.h>
 
 #include <asm/lv1call.h>
 #include <asm/ps3stor.h>
index b3bdb8af89cfad5e80e8ea9d01f5134c1872fbbe..cbd735b931ea4a4b5b47db67cfe1fbfe53c6484a 100644 (file)
@@ -10,6 +10,7 @@
 
 #include <linux/blkdev.h>
 #include <linux/delay.h>
+#include <linux/module.h>
 #include <linux/proc_fs.h>
 #include <linux/seq_file.h>
 #include <linux/slab.h>
index 079c08808d8a41b7fe5d27b00d389579ffae0930..aa7094f230179d608fd94a6fbfbcb655325d0219 100644 (file)
@@ -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>
This page took 0.046843 seconds and 5 git commands to generate.