ipq807x: fixed secure pshold API name

Change-Id: I448a1341bec82b1a35d671eb12b2ba94f29cdc1d
Signed-off-by: Saravanan Jaganathan <sjaganat@codeaurora.org>
This commit is contained in:
Saravanan Jaganathan 2018-02-19 13:32:30 +05:30 committed by Gerrit - the friendly Code Review server
parent e703375fa3
commit 5fd15748ea

View file

@ -205,7 +205,7 @@ void psci_sys_reset(void)
__invoke_psci_fn_smc(0x84000009, 0, 0, 0);
}
void qcom_scm_pshold(void)
void qti_scm_pshold(void)
{
int ret;
@ -221,7 +221,7 @@ void reset_cpu(unsigned long a)
if (is_scm_armv8()) {
psci_sys_reset();
} else {
qcom_scm_pshold();
qti_scm_pshold();
}
while(1);
}