diff options
author | Tony Lindgren <tony@atomide.com> | 2013-10-07 10:22:01 -0700 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2013-10-08 10:37:29 -0700 |
commit | d623a0e19dcbc4e44a8db047158815d7f8c2b839 (patch) | |
tree | fa7031c3706be52c37004996a2080aa11e883fab /include/dt-bindings | |
parent | 016c12d2fb8584db392211bc6b0bdd6fcf7cfd97 (diff) | |
download | linux-d623a0e19dcbc4e44a8db047158815d7f8c2b839.tar.gz linux-d623a0e19dcbc4e44a8db047158815d7f8c2b839.tar.bz2 linux-d623a0e19dcbc4e44a8db047158815d7f8c2b839.zip |
ARM: dts: Fix pinctrl mask for omap3
The wake-up interrupt bit is available on omap3/4/5 processors
unlike what we claim. Without fixing it we cannot use it on
omap3 and the system configured for wake-up events will just
hang on wake-up.
Cc: Grygorii Strashko <grygorii.strashko@ti.com>
Cc: BenoƮt Cousson <bcousson@baylibre.com>
Cc: devicetree@vger.kernel.org
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'include/dt-bindings')
-rw-r--r-- | include/dt-bindings/pinctrl/omap.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/dt-bindings/pinctrl/omap.h b/include/dt-bindings/pinctrl/omap.h index edbd250809cb..bed35e36fd27 100644 --- a/include/dt-bindings/pinctrl/omap.h +++ b/include/dt-bindings/pinctrl/omap.h @@ -23,7 +23,7 @@ #define PULL_UP (1 << 4) #define ALTELECTRICALSEL (1 << 5) -/* 34xx specific mux bit defines */ +/* omap3/4/5 specific mux bit defines */ #define INPUT_EN (1 << 8) #define OFF_EN (1 << 9) #define OFFOUT_EN (1 << 10) @@ -31,8 +31,6 @@ #define OFF_PULL_EN (1 << 12) #define OFF_PULL_UP (1 << 13) #define WAKEUP_EN (1 << 14) - -/* 44xx specific mux bit defines */ #define WAKEUP_EVENT (1 << 15) /* Active pin states */ |