Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Masahiro Yamada and committed by
Linus Walleij
f652e66f d6e561df

+5
+5
include/linux/pinctrl/pinctrl-state.h
··· 3 3 * Standard pin control state definitions 4 4 */ 5 5 6 + #ifndef __LINUX_PINCTRL_PINCTRL_STATE_H 7 + #define __LINUX_PINCTRL_PINCTRL_STATE_H 8 + 6 9 /** 7 10 * @PINCTRL_STATE_DEFAULT: the state the pinctrl handle shall be put 8 11 * into as default, usually this means the pins are up and ready to ··· 34 31 #define PINCTRL_STATE_INIT "init" 35 32 #define PINCTRL_STATE_IDLE "idle" 36 33 #define PINCTRL_STATE_SLEEP "sleep" 34 + 35 + #endif /* __LINUX_PINCTRL_PINCTRL_STATE_H */