diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-05-27 09:47:43 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:31:24 -0400 |
commit | acf3368ffb75fc4a83726655d697e79646fe4eb3 (patch) | |
tree | 71a150c988cbe40615502a3843f46482274cf299 /drivers/scsi/sr_ioctl.c | |
parent | 09703660edf83b8b6d175440bf745f30580d85ab (diff) |
scsi: Fix up files implicitly depending on module.h inclusion
The module.h header was implicitly present everywhere, so files
with no explicit include of the module infrastructure would build
anyway. We are now removing the implicit include, and so we need
to call out the module.h file that we need explicitly.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/scsi/sr_ioctl.c')
-rw-r--r-- | drivers/scsi/sr_ioctl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/sr_ioctl.c b/drivers/scsi/sr_ioctl.c index 8be30554119b..a3911c39ea50 100644 --- a/drivers/scsi/sr_ioctl.c +++ b/drivers/scsi/sr_ioctl.c | |||
@@ -4,6 +4,7 @@ | |||
4 | #include <linux/errno.h> | 4 | #include <linux/errno.h> |
5 | #include <linux/string.h> | 5 | #include <linux/string.h> |
6 | #include <linux/blkdev.h> | 6 | #include <linux/blkdev.h> |
7 | #include <linux/module.h> | ||
7 | #include <linux/blkpg.h> | 8 | #include <linux/blkpg.h> |
8 | #include <linux/cdrom.h> | 9 | #include <linux/cdrom.h> |
9 | #include <linux/delay.h> | 10 | #include <linux/delay.h> |