diff options
author | Tony Lindgren <tony@atomide.com> | 2018-01-22 20:32:53 +0300 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2018-01-22 20:32:53 +0300 |
commit | 3267c081e037e2ed1a3af65ee46825799a7ccda5 (patch) | |
tree | 780e5abbfaac34e033cf899095f67733f8de59b1 /drivers/bus | |
parent | c5a2de97fbd2979fab291fb048084d3fddd322dd (diff) | |
download | linux-3267c081e037e2ed1a3af65ee46825799a7ccda5.tar.xz |
bus: ti-sysc: Fix smartreflex sysc mask
The enawakeup bit is in a different location for smartreflex compared
to the "ti,sysc-omap2" compatible.
Fixes: 70a65240efb1 ("bus: ti-sysc: Add register bits for interconnect
target modules")
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'drivers/bus')
-rw-r--r-- | drivers/bus/ti-sysc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bus/ti-sysc.c b/drivers/bus/ti-sysc.c index 2c62985a345f..4d46003c46cf 100644 --- a/drivers/bus/ti-sysc.c +++ b/drivers/bus/ti-sysc.c @@ -816,7 +816,7 @@ static const struct sysc_regbits sysc_regbits_omap36xx_sr = { static const struct sysc_capabilities sysc_36xx_sr = { .type = TI_SYSC_OMAP36XX_SR, - .sysc_mask = SYSC_OMAP2_ENAWAKEUP, + .sysc_mask = SYSC_OMAP3_SR_ENAWAKEUP, .regbits = &sysc_regbits_omap36xx_sr, .mod_quirks = SYSC_QUIRK_UNCACHED, }; |