diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2013-12-23 18:12:48 +0100 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-12-23 18:12:48 +0100 |
commit | 523639e6feb83892c15208027d7f0374cfcc1961 (patch) | |
tree | c74070dc5e95eecbc24e5b25751e71b52d621a63 /drivers/gpio/gpio-sch311x.c | |
parent | 41c3548e6da67786bcaf8ee7b406f6f85ddd816b (diff) |
gpio: sch311x: fix compilation error
Compilation failed on some platforms due to implicit inclusion of
<linux/io.h>, make this dependency explicit.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-sch311x.c')
-rw-r--r-- | drivers/gpio/gpio-sch311x.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-sch311x.c b/drivers/gpio/gpio-sch311x.c index 483a6f8bd958..0357387b3645 100644 --- a/drivers/gpio/gpio-sch311x.c +++ b/drivers/gpio/gpio-sch311x.c @@ -18,6 +18,7 @@ #include <linux/platform_device.h> #include <linux/gpio.h> #include <linux/bitops.h> +#include <linux/io.h> #define DRV_NAME "gpio-sch311x" |