diff options
author | davidcunado-arm <david.cunado@arm.com> | 2017-06-23 14:42:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-23 14:42:06 +0100 |
commit | 73e11b4321fa8b0d7032175e1ddf65a4a320847c (patch) | |
tree | 546d53840e5bcc96f7f3a003563397856a61ad40 /lib/psci/psci_suspend.c | |
parent | 9151ac0ef42c35765c40f4363dfa5cc7a799ace5 (diff) | |
parent | c283e05af1b7a287cd8edee53603c6d015330aff (diff) |
Merge pull request #976 from etienne-lms/minor-psci
psci: minor fixes in lib
Diffstat (limited to 'lib/psci/psci_suspend.c')
-rw-r--r-- | lib/psci/psci_suspend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/psci/psci_suspend.c b/lib/psci/psci_suspend.c index fe68f44f..47988926 100644 --- a/lib/psci/psci_suspend.c +++ b/lib/psci/psci_suspend.c @@ -292,7 +292,7 @@ void psci_cpu_suspend_finish(unsigned int cpu_idx, * Dispatcher to let it do any bookeeping. If the handler encounters an * error, it's expected to assert within */ - if (psci_spd_pm && psci_spd_pm->svc_suspend) { + if (psci_spd_pm && psci_spd_pm->svc_suspend_finish) { max_off_lvl = psci_find_max_off_lvl(state_info); assert (max_off_lvl != PSCI_INVALID_PWR_LVL); psci_spd_pm->svc_suspend_finish(max_off_lvl); |