summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSoby Mathew <soby.mathew@arm.com>2016-03-23 10:11:10 +0000
committerSoby Mathew <soby.mathew@arm.com>2016-04-01 17:57:18 +0100
commita0ad6019ff308a6e4bef09a80c80b6e04053abee (patch)
tree5a80e3df458872471c416de498115eaa32b4aad9 /include
parent4c51badfb52128a186e1ed3ae63b324d89a69fbd (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 'include')
-rw-r--r--include/plat/common/platform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/plat/common/platform.h b/include/plat/common/platform.h
index 5c61f381..6f0a8a0f 100644
--- a/include/plat/common/platform.h
+++ b/include/plat/common/platform.h
@@ -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);