diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-05-27 15:47:43 +0200 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-11-01 00:31:24 +0100 |
commit | acf3368ffb75fc4a83726655d697e79646fe4eb3 (patch) | |
tree | 71a150c988cbe40615502a3843f46482274cf299 /drivers/scsi/device_handler/scsi_dh_rdac.c | |
parent | scsi: Add export.h for EXPORT_SYMBOL/THIS_MODULE as required (diff) | |
download | linux-acf3368ffb75fc4a83726655d697e79646fe4eb3.tar.xz linux-acf3368ffb75fc4a83726655d697e79646fe4eb3.zip |
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/device_handler/scsi_dh_rdac.c')
-rw-r--r-- | drivers/scsi/device_handler/scsi_dh_rdac.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/device_handler/scsi_dh_rdac.c b/drivers/scsi/device_handler/scsi_dh_rdac.c index 82d612f0c49d..1d3127920063 100644 --- a/drivers/scsi/device_handler/scsi_dh_rdac.c +++ b/drivers/scsi/device_handler/scsi_dh_rdac.c @@ -24,6 +24,7 @@ #include <scsi/scsi_dh.h> #include <linux/workqueue.h> #include <linux/slab.h> +#include <linux/module.h> #define RDAC_NAME "rdac" #define RDAC_RETRY_COUNT 5 |