Commit 34b3eb14 authored by Andrew F. Davis's avatar Andrew F. Davis
Browse files

ti: k3: common: Do not release processor control on startup



ATF should be the only host needing to control a processor that it has
started. ATF will need this control to stop the core later. Do not
relinquish control of a core after starting the core.
Signed-off-by: default avatarAndrew F. Davis <afd@ti.com>
parent a9ae424e
...@@ -71,12 +71,6 @@ static int k3_pwr_domain_on(u_register_t mpidr) ...@@ -71,12 +71,6 @@ static int k3_pwr_domain_on(u_register_t mpidr)
return PSCI_E_INTERN_FAIL; return PSCI_E_INTERN_FAIL;
} }
ret = ti_sci_proc_release(proc);
if (ret) {
/* this is not fatal */
WARN("Could not release processor control: %d\n", ret);
}
return PSCI_E_SUCCESS; return PSCI_E_SUCCESS;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment