aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/pinctrl
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2019-06-09 23:43:13 +0900
committerLinus Walleij <linus.walleij@linaro.org>2019-06-09 16:53:22 +0200
commitf652e66fcca07e59f207bcca27c5566193feabd5 (patch)
tree964a34fbb84895c9a005b77fcd0f918b2d6d1387 /include/linux/pinctrl
parentdt-bindings: pinctrl: pic32: Spelling s/configuraion/configuration/ (diff)
downloadwireguard-linux-f652e66fcca07e59f207bcca27c5566193feabd5.tar.xz
wireguard-linux-f652e66fcca07e59f207bcca27c5566193feabd5.zip
pinctrl: add include guard to pinctrl-state.h
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'include/linux/pinctrl')
-rw-r--r--include/linux/pinctrl/pinctrl-state.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/pinctrl/pinctrl-state.h b/include/linux/pinctrl/pinctrl-state.h
index a0e785815a64..635d97e9285e 100644
--- a/include/linux/pinctrl/pinctrl-state.h
+++ b/include/linux/pinctrl/pinctrl-state.h
@@ -3,6 +3,9 @@
* Standard pin control state definitions
*/
+#ifndef __LINUX_PINCTRL_PINCTRL_STATE_H
+#define __LINUX_PINCTRL_PINCTRL_STATE_H
+
/**
* @PINCTRL_STATE_DEFAULT: the state the pinctrl handle shall be put
* into as default, usually this means the pins are up and ready to
@@ -31,3 +34,5 @@
#define PINCTRL_STATE_INIT "init"
#define PINCTRL_STATE_IDLE "idle"
#define PINCTRL_STATE_SLEEP "sleep"
+
+#endif /* __LINUX_PINCTRL_PINCTRL_STATE_H */