rcar_gen3: plat: Function cleanup

Replace foo_t with struct foo.

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
This commit is contained in:
Marek Vasut 2018-12-26 15:57:08 +01:00
parent 53ff5c79b4
commit db9a155508
2 changed files with 2 additions and 2 deletions

View File

@ -388,7 +388,7 @@ int bl2_plat_handle_post_image_load(unsigned int image_id)
return 0;
}
meminfo_t *bl2_plat_sec_mem_layout(void)
struct meminfo *bl2_plat_sec_mem_layout(void)
{
return &bl2_tzram_layout;
}

View File

@ -64,7 +64,7 @@ void plat_cci_disable(void)
cci_disable_snoop_dvm_reqs(MPIDR_AFFLVL1_VAL(read_mpidr()));
}
entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
struct entry_point_info *bl31_plat_get_next_image_ep_info(uint32_t type)
{
bl2_to_bl31_params_mem_t *from_bl2 = (bl2_to_bl31_params_mem_t *)
PARAMS_BASE;