diff options
author | Nishanth Menon <nm@ti.com> | 2014-08-11 14:58:23 -0500 |
---|---|---|
committer | Nishanth Menon <nm@ti.com> | 2014-09-08 10:53:56 -0500 |
commit | 2aba071c50591eaa7a2e33d3df296dd74232691e (patch) | |
tree | 3435de057f97bbafa8f0c2e9bd2de1e9afb85182 /arch/arm | |
parent | a6903ea3019f849df7377786ed7885189b3f860b (diff) | |
download | op-kernel-dev-2aba071c50591eaa7a2e33d3df296dd74232691e.zip op-kernel-dev-2aba071c50591eaa7a2e33d3df296dd74232691e.tar.gz |
ARM: OMAP4+: PRM: Enable wakeup capability for OMAP5, DRA7
OMAP5 and DRA7 can now use pinctrl based I/O daisychain wakeup
capability. So, enable the support.
Signed-off-by: Nishanth Menon <nm@ti.com>
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-omap2/prm44xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/prm44xx.c b/arch/arm/mach-omap2/prm44xx.c index b6bfa6f..0958d07 100644 --- a/arch/arm/mach-omap2/prm44xx.c +++ b/arch/arm/mach-omap2/prm44xx.c @@ -693,7 +693,7 @@ static struct prm_ll_data omap44xx_prm_ll_data = { int __init omap44xx_prm_init(void) { - if (cpu_is_omap44xx()) + if (cpu_is_omap44xx() || soc_is_omap54xx() || soc_is_dra7xx()) prm_features |= PRM_HAS_IO_WAKEUP; return prm_register(&omap44xx_prm_ll_data); |