Merge pull request #303 from danh-arm/dh/fix-fvp-setup-topology

Fix return type of FVP plat_arm_topology_setup
This commit is contained in:
danh-arm 2015-05-20 11:32:15 +01:00
commit c163ec455b
1 changed files with 1 additions and 2 deletions

View File

@ -183,7 +183,7 @@ unsigned int plat_get_aff_state(unsigned int aff_lvl,
* the FVP flavour its running on. We construct all the mpidrs we can handle * the FVP flavour its running on. We construct all the mpidrs we can handle
* and rely on the PWRC.PSYSR to flag absent cpus when their status is queried. * and rely on the PWRC.PSYSR to flag absent cpus when their status is queried.
******************************************************************************/ ******************************************************************************/
int plat_arm_topology_setup(void) void plat_arm_topology_setup(void)
{ {
unsigned char aff0, aff1, aff_state, aff0_offset = 0; unsigned char aff0, aff1, aff_state, aff0_offset = 0;
unsigned long mpidr; unsigned long mpidr;
@ -229,5 +229,4 @@ int plat_arm_topology_setup(void)
fvp_aff1_topology_map[aff1 - 1].sibling = AFFINST_INVAL; fvp_aff1_topology_map[aff1 - 1].sibling = AFFINST_INVAL;
topology_setup_done = 1; topology_setup_done = 1;
return 0;
} }