Unverified Commit 7d388400 authored by Antonio Niño Díaz's avatar Antonio Niño Díaz Committed by GitHub
Browse files

Merge pull request #1788 from laroche/rpi3_duplicate_initialization

rpi3: Remove duplicate initialization for BL32_IMAGE_ID and mark one more function as static.
parents 5755a30b e77ccb65
...@@ -133,11 +133,6 @@ static const struct plat_io_policy policies[] = { ...@@ -133,11 +133,6 @@ static const struct plat_io_policy policies[] = {
(uintptr_t)&bl32_uuid_spec, (uintptr_t)&bl32_uuid_spec,
open_fip open_fip
}, },
[BL32_IMAGE_ID] = {
&fip_dev_handle,
(uintptr_t)&bl32_uuid_spec,
open_fip
},
[BL32_EXTRA1_IMAGE_ID] = { [BL32_EXTRA1_IMAGE_ID] = {
&fip_dev_handle, &fip_dev_handle,
(uintptr_t)&bl32_extra1_uuid_spec, (uintptr_t)&bl32_extra1_uuid_spec,
......
...@@ -140,7 +140,7 @@ static int rpi3_pwr_domain_on(u_register_t mpidr) ...@@ -140,7 +140,7 @@ static int rpi3_pwr_domain_on(u_register_t mpidr)
* being turned off earlier. The target_state encodes the low power state that * being turned off earlier. The target_state encodes the low power state that
* each level has woken up from. * each level has woken up from.
******************************************************************************/ ******************************************************************************/
void rpi3_pwr_domain_on_finish(const psci_power_state_t *target_state) static void rpi3_pwr_domain_on_finish(const psci_power_state_t *target_state)
{ {
assert(target_state->pwr_domain_state[MPIDR_AFFLVL0] == assert(target_state->pwr_domain_state[MPIDR_AFFLVL0] ==
PLAT_LOCAL_STATE_OFF); PLAT_LOCAL_STATE_OFF);
......
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