diff options
author | Alexandre Courbot <acourbot@nvidia.com> | 2014-08-04 13:05:56 +0900 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2014-08-07 11:54:51 +0200 |
commit | b3ea074fd3c798bee861aa076dc2f873461ae26f (patch) | |
tree | fb35faecb3f79bfe9168785627f1e2a4ba19892e /include/linux/gpio | |
parent | 39b2bbe3d715cf5013b5c48695ccdd25bd3bf120 (diff) |
gpio: add missing includes in machine.h
linux/types.h and linux/list.h should be included so the typed used in
the header file are always properly declared.
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Reported-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'include/linux/gpio')
-rw-r--r-- | include/linux/gpio/machine.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/gpio/machine.h b/include/linux/gpio/machine.h index b8ad87fab4ce..e2706140eaff 100644 --- a/include/linux/gpio/machine.h +++ b/include/linux/gpio/machine.h @@ -1,6 +1,9 @@ #ifndef __LINUX_GPIO_MACHINE_H #define __LINUX_GPIO_MACHINE_H +#include <linux/types.h> +#include <linux/list.h> + enum gpio_lookup_flags { GPIO_ACTIVE_HIGH = (0 << 0), GPIO_ACTIVE_LOW = (1 << 0), |