diff options
author | Florian Vaussard <florian.vaussard@epfl.ch> | 2013-06-11 10:50:50 -0400 |
---|---|---|
committer | Benoit Cousson <benoit.cousson@linaro.org> | 2013-06-19 05:34:42 -0400 |
commit | ac25da7f30a118b7021c5b49c2cc50ba832db962 (patch) | |
tree | 9b35f5e29a02fb3c7ffd2eea8a3e7ce6eda58c07 /include/dt-bindings/pinctrl/am33xx.h | |
parent | 75fbbca2b11ce7c8ee728a8c5d0e58b477eccf4f (diff) |
ARM: dts: Protect pinctrl headers against multiple inclusions
Pinctrl headers were not protected with #ifndef.
Signed-off-by: Florian Vaussard <florian.vaussard@epfl.ch>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Benoit Cousson <benoit.cousson@linaro.org>
Diffstat (limited to 'include/dt-bindings/pinctrl/am33xx.h')
-rw-r--r-- | include/dt-bindings/pinctrl/am33xx.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/dt-bindings/pinctrl/am33xx.h b/include/dt-bindings/pinctrl/am33xx.h index a3fddd4f6ecf..469e0325e6f4 100644 --- a/include/dt-bindings/pinctrl/am33xx.h +++ b/include/dt-bindings/pinctrl/am33xx.h | |||
@@ -2,6 +2,9 @@ | |||
2 | * This header provides constants specific to AM33XX pinctrl bindings. | 2 | * This header provides constants specific to AM33XX pinctrl bindings. |
3 | */ | 3 | */ |
4 | 4 | ||
5 | #ifndef _DT_BINDINGS_PINCTRL_AM33XX_H | ||
6 | #define _DT_BINDINGS_PINCTRL_AM33XX_H | ||
7 | |||
5 | #include <include/dt-bindings/pinctrl/omap.h> | 8 | #include <include/dt-bindings/pinctrl/omap.h> |
6 | 9 | ||
7 | /* am33xx specific mux bit defines */ | 10 | /* am33xx specific mux bit defines */ |
@@ -35,3 +38,5 @@ | |||
35 | #undef PIN_OFF_INPUT_PULLDOWN | 38 | #undef PIN_OFF_INPUT_PULLDOWN |
36 | #undef PIN_OFF_WAKEUPENABLE | 39 | #undef PIN_OFF_WAKEUPENABLE |
37 | 40 | ||
41 | #endif | ||
42 | |||