diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2017-06-15 17:06:27 +0200 |
---|---|---|
committer | Krzysztof Kozlowski <krzk@kernel.org> | 2017-07-18 19:20:42 +0200 |
commit | ff60dcedbd99395c3355bc00fd302c31c96c9b92 (patch) | |
tree | 19423ef94ec84c3f2ea03b1ccaa0b4bc11b547bd /include/dt-bindings | |
parent | af0b0baa89953aed07034725023371b2fa50a1e6 (diff) | |
download | talos-op-linux-ff60dcedbd99395c3355bc00fd302c31c96c9b92.tar.gz talos-op-linux-ff60dcedbd99395c3355bc00fd302c31c96c9b92.zip |
pinctrl: samsung: dt-bindings: Use better name for external interrupt function
On Exynos, 0xf is always used as value of external interrupt in pin mux
function thus a more descriptive macro name can be used.
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Diffstat (limited to 'include/dt-bindings')
-rw-r--r-- | include/dt-bindings/pinctrl/samsung.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/dt-bindings/pinctrl/samsung.h b/include/dt-bindings/pinctrl/samsung.h index b7aa3646208b..ceb672305f59 100644 --- a/include/dt-bindings/pinctrl/samsung.h +++ b/include/dt-bindings/pinctrl/samsung.h @@ -66,7 +66,8 @@ #define EXYNOS_PIN_FUNC_4 4 #define EXYNOS_PIN_FUNC_5 5 #define EXYNOS_PIN_FUNC_6 6 -#define EXYNOS_PIN_FUNC_F 0xf +#define EXYNOS_PIN_FUNC_EINT 0xf +#define EXYNOS_PIN_FUNC_F EXYNOS_PIN_FUNC_EINT /* Drive strengths for Exynos7 FSYS1 block */ #define EXYNOS7_FSYS1_PIN_DRV_LV1 0 |