diff options
author | Soby Mathew <soby.mathew@arm.com> | 2016-03-23 10:11:10 +0000 |
---|---|---|
committer | Soby Mathew <soby.mathew@arm.com> | 2016-04-01 17:57:18 +0100 |
commit | a0ad6019ff308a6e4bef09a80c80b6e04053abee (patch) | |
tree | 5a80e3df458872471c416de498115eaa32b4aad9 /docs | |
parent | 4c51badfb52128a186e1ed3ae63b324d89a69fbd (diff) |
Modify return type of plat_get_ns_image_entrypoint()
This patch modifies the return type of the platform API
`plat_get_ns_image_entrypoint()` from `unsigned long` to
`uintptr_t` in accordance with the coding guidelines.
Change-Id: Icb4510ca98b706aa4d535fe27e203394184fb4ca
Diffstat (limited to 'docs')
-rw-r--r-- | docs/porting-guide.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/porting-guide.md b/docs/porting-guide.md index f0adf570..f1f14a8a 100644 --- a/docs/porting-guide.md +++ b/docs/porting-guide.md @@ -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 |