diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-03 13:38:09 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:31:47 -0400 |
commit | bb207ef1e84ffc4afe89f3a5b84788bac0f968e7 (patch) | |
tree | 1678f932395846396afad6f24fa8a9acc35094ab /drivers/gpio/gpio-mxc.c | |
parent | afd605f68392d85638e1499143b9ad2e1389d742 (diff) |
drivers/gpio: Fix drivers who are implicit users of module.h
A pending cleanup will mean that module.h won't be implicitly
everywhere anymore. Make sure the modular drivers in gpio
are actually calling out for <module.h> explicitly in advance.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/gpio/gpio-mxc.c')
-rw-r--r-- | drivers/gpio/gpio-mxc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-mxc.c b/drivers/gpio/gpio-mxc.c index 82f7b65baf72..addbea09aece 100644 --- a/drivers/gpio/gpio-mxc.c +++ b/drivers/gpio/gpio-mxc.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <linux/basic_mmio_gpio.h> | 29 | #include <linux/basic_mmio_gpio.h> |
30 | #include <linux/of.h> | 30 | #include <linux/of.h> |
31 | #include <linux/of_device.h> | 31 | #include <linux/of_device.h> |
32 | #include <linux/module.h> | ||
32 | #include <asm-generic/bug.h> | 33 | #include <asm-generic/bug.h> |
33 | #include <asm/mach/irq.h> | 34 | #include <asm/mach/irq.h> |
34 | 35 | ||