diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2015-05-01 20:02:31 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2015-06-16 14:12:25 -0400 |
commit | 5468f887bc861b2fe2fa24a44bc6a616a5d33a73 (patch) | |
tree | 70875a74d812a8c61fb5890b7f3b244576f57be0 | |
parent | a1a0bec593623f49740d7900e4b862c534f219bf (diff) | |
download | op-kernel-dev-5468f887bc861b2fe2fa24a44bc6a616a5d33a73.zip op-kernel-dev-5468f887bc861b2fe2fa24a44bc6a616a5d33a73.tar.gz |
drivers/pcmcia: include <module.h> for modular xxs1500_ss code
This file is built off of a tristate Kconfig option and also contains
modular function calls so it should explicitly include module.h to
avoid compile breakage during header shuffles done in the future.
Cc: Wolfram Sang <wsa@the-dreams.de>
Acked-by: Wolfram Sang <wsa@the-dreams.de>
Cc: linux-pcmcia@lists.infradead.org
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
-rw-r--r-- | drivers/pcmcia/xxs1500_ss.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pcmcia/xxs1500_ss.c b/drivers/pcmcia/xxs1500_ss.c index 4c04360..b2a1895 100644 --- a/drivers/pcmcia/xxs1500_ss.c +++ b/drivers/pcmcia/xxs1500_ss.c @@ -11,6 +11,7 @@ #include <linux/io.h> #include <linux/ioport.h> #include <linux/mm.h> +#include <linux/module.h> #include <linux/platform_device.h> #include <linux/pm.h> #include <linux/resource.h> |