diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-03 21:38:09 +0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-11-01 03:31:47 +0400 |
commit | bb207ef1e84ffc4afe89f3a5b84788bac0f968e7 (patch) | |
tree | 1678f932395846396afad6f24fa8a9acc35094ab /drivers/gpio/gpio-pcf857x.c | |
parent | afd605f68392d85638e1499143b9ad2e1389d742 (diff) | |
download | linux-bb207ef1e84ffc4afe89f3a5b84788bac0f968e7.tar.xz |
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-pcf857x.c')
-rw-r--r-- | drivers/gpio/gpio-pcf857x.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-pcf857x.c b/drivers/gpio/gpio-pcf857x.c index 7369fdda92b0..3e1f1ecd07be 100644 --- a/drivers/gpio/gpio-pcf857x.c +++ b/drivers/gpio/gpio-pcf857x.c @@ -23,6 +23,7 @@ #include <linux/gpio.h> #include <linux/i2c.h> #include <linux/i2c/pcf857x.h> +#include <linux/module.h> static const struct i2c_device_id pcf857x_id[] = { |