mirror of
https://github.com/CTCaer/switch-l4t-atf.git
synced 2025-01-19 08:52:17 +00:00
Merge pull request #580 from soby-mathew/sm/ret_type_plat_ns_ep
Modify return type of plat_get_ns_image_entrypoint()
This commit is contained in:
commit
af711c1e0f
@ -1259,7 +1259,7 @@ later Bootloader stages with MMU off
|
||||
### Function : plat_get_ns_image_entrypoint() [mandatory]
|
||||
|
||||
Argument : void
|
||||
Return : unsigned long
|
||||
Return : uintptr_t
|
||||
|
||||
As previously described, BL2 is responsible for arranging for control to be
|
||||
passed to a normal world BL image through BL31. This function returns the
|
||||
|
@ -60,7 +60,7 @@ uint64_t plat_get_syscnt_freq(void);
|
||||
int plat_get_image_source(unsigned int image_id,
|
||||
uintptr_t *dev_handle,
|
||||
uintptr_t *image_spec);
|
||||
unsigned long plat_get_ns_image_entrypoint(void);
|
||||
uintptr_t plat_get_ns_image_entrypoint(void);
|
||||
unsigned int plat_my_core_pos(void);
|
||||
int plat_core_pos_by_mpidr(u_register_t mpidr);
|
||||
|
||||
|
@ -93,7 +93,7 @@ DEFINE_CONFIGURE_MMU_EL(1)
|
||||
DEFINE_CONFIGURE_MMU_EL(3)
|
||||
|
||||
|
||||
unsigned long plat_get_ns_image_entrypoint(void)
|
||||
uintptr_t plat_get_ns_image_entrypoint(void)
|
||||
{
|
||||
return PLAT_ARM_NS_IMAGE_OFFSET;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user