diff options
author | Paul Gortmaker <[email protected]> | 2016-09-12 18:16:30 -0400 |
---|---|---|
committer | Linus Walleij <[email protected]> | 2016-09-15 14:03:33 +0200 |
commit | 39d80072222428aaf73276c6fd66185e6f622bd9 (patch) | |
tree | d432565bc8d534b2dbb13ba909e7e3c03c1e24b5 | |
parent | 5f604506f1fdaed63aac645d0c2c6104a2ce7ce8 (diff) |
gpio: wcove: fix implicit assumption module.h is present
The Kconfig for this file is:
drivers/gpio/Kconfig:config GPIO_WHISKEY_COVE
drivers/gpio/Kconfig: tristate "GPIO support for Whiskey Cove PMIC"
...but however it does not include module.h -- it in turn gets it from
another header (gpio/driver.h) and we'd like to replace that with a
forward delcaration of "struct module;" but if we do, this file will
fail to compile.
So we fix this first to avoid putting build failures into the bisect
commit history.
Cc: Ajay Thomas <[email protected]>
Cc: Bin Gao <[email protected]>
Cc: Andy Shevchenko <[email protected]>
Cc: Mika Westerberg <[email protected]>
Cc: Linus Walleij <[email protected]>
Cc: Alexandre Courbot <[email protected]>
Cc: [email protected]
Signed-off-by: Paul Gortmaker <[email protected]>
Signed-off-by: Linus Walleij <[email protected]>
-rw-r--r-- | drivers/gpio/gpio-wcove.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-wcove.c b/drivers/gpio/gpio-wcove.c index e11d6a3fb641..d0ddba7a9d08 100644 --- a/drivers/gpio/gpio-wcove.c +++ b/drivers/gpio/gpio-wcove.c @@ -16,6 +16,7 @@ */ #include <linux/bitops.h> +#include <linux/module.h> #include <linux/interrupt.h> #include <linux/gpio/driver.h> #include <linux/mfd/intel_soc_pmic.h> |