From c073fda1c692d7c74415d26fb483d6336330fcc0 Mon Sep 17 00:00:00 2001 From: Yatharth Kochar Date: Thu, 14 Apr 2016 14:49:37 +0100 Subject: Move `plat_get_syscnt_freq()` to arm_common.c This patch moves the definition for `plat_get_syscnt_freq()` from arm_bl31_setup.c to arm_common.c. This could be useful in case a delay timer needs to be installed based on the generic timer in other BLs. This patch also modifies the return type for this function from `uint64_t` to `unsigned long long` within ARM and other platform files. Change-Id: Iccdfa811948e660d4fdcaae60ad1d700e4eda80d --- include/plat/common/platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/plat/common/platform.h') diff --git a/include/plat/common/platform.h b/include/plat/common/platform.h index 58575012..42260e9f 100644 --- a/include/plat/common/platform.h +++ b/include/plat/common/platform.h @@ -56,7 +56,7 @@ struct image_desc; /******************************************************************************* * Mandatory common functions ******************************************************************************/ -uint64_t plat_get_syscnt_freq(void); +unsigned long long plat_get_syscnt_freq(void); int plat_get_image_source(unsigned int image_id, uintptr_t *dev_handle, uintptr_t *image_spec); -- cgit