Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
af711c1e
Commit
af711c1e
authored
Apr 04, 2016
by
danh-arm
Browse files
Merge pull request #580 from soby-mathew/sm/ret_type_plat_ns_ep
Modify return type of plat_get_ns_image_entrypoint()
parents
c2916417
a0ad6019
Changes
3
Hide whitespace changes
Inline
Side-by-side
docs/porting-guide.md
View file @
af711c1e
...
...
@@ -1259,7 +1259,7 @@ later Bootloader stages with MMU off
### Function : plat_get_ns_image_entrypoint() [mandatory]
Argument : void
Return : u
nsigned long
Return : u
intptr_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
...
...
include/plat/common/platform.h
View file @
af711c1e
...
...
@@ -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
);
u
nsigned
long
plat_get_ns_image_entrypoint
(
void
);
u
intptr_t
plat_get_ns_image_entrypoint
(
void
);
unsigned
int
plat_my_core_pos
(
void
);
int
plat_core_pos_by_mpidr
(
u_register_t
mpidr
);
...
...
plat/arm/common/aarch64/arm_common.c
View file @
af711c1e
...
...
@@ -93,7 +93,7 @@ DEFINE_CONFIGURE_MMU_EL(1)
DEFINE_CONFIGURE_MMU_EL
(
3
)
u
nsigned
long
plat_get_ns_image_entrypoint
(
void
)
u
intptr_t
plat_get_ns_image_entrypoint
(
void
)
{
return
PLAT_ARM_NS_IMAGE_OFFSET
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment