diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-03-20 06:27:18 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-03-20 06:27:18 -0400 |
commit | 4958134df54c2c84e9c22ea042761d439164d26e (patch) | |
tree | 503177afab11f7d25b12a84ce25b481d305c51ba /arch/arm/mach-omap2/pm.c | |
parent | c4f528795d1add8b63652673f7262729f679c6c1 (diff) | |
parent | c698ca5278934c0ae32297a8725ced2e27585d7f (diff) |
Merge 4.16-rc6 into tty-next
We want the serial/tty fixes in here as well.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/arm/mach-omap2/pm.c')
-rw-r--r-- | arch/arm/mach-omap2/pm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/pm.c b/arch/arm/mach-omap2/pm.c index 366158a54fcd..6f68576e5695 100644 --- a/arch/arm/mach-omap2/pm.c +++ b/arch/arm/mach-omap2/pm.c | |||
@@ -186,7 +186,7 @@ static void omap_pm_end(void) | |||
186 | cpu_idle_poll_ctrl(false); | 186 | cpu_idle_poll_ctrl(false); |
187 | } | 187 | } |
188 | 188 | ||
189 | static void omap_pm_finish(void) | 189 | static void omap_pm_wake(void) |
190 | { | 190 | { |
191 | if (soc_is_omap34xx()) | 191 | if (soc_is_omap34xx()) |
192 | omap_prcm_irq_complete(); | 192 | omap_prcm_irq_complete(); |
@@ -196,7 +196,7 @@ static const struct platform_suspend_ops omap_pm_ops = { | |||
196 | .begin = omap_pm_begin, | 196 | .begin = omap_pm_begin, |
197 | .end = omap_pm_end, | 197 | .end = omap_pm_end, |
198 | .enter = omap_pm_enter, | 198 | .enter = omap_pm_enter, |
199 | .finish = omap_pm_finish, | 199 | .wake = omap_pm_wake, |
200 | .valid = suspend_valid_only_mem, | 200 | .valid = suspend_valid_only_mem, |
201 | }; | 201 | }; |
202 | 202 | ||