aboutsummaryrefslogtreecommitdiff
path: root/plat/nvidia/tegra/soc/t132
diff options
context:
space:
mode:
authorYatharth Kochar <yatharth.kochar@arm.com>2016-04-14 14:49:37 +0100
committerYatharth Kochar <yatharth.kochar@arm.com>2016-04-21 17:10:58 +0100
commitc073fda1c692d7c74415d26fb483d6336330fcc0 (patch)
tree6c33731e77ceeea6859d7114a39318926a79a30e /plat/nvidia/tegra/soc/t132
parent81b491ff37a7027766410a91d9837e093248300d (diff)
downloadtrusted-firmware-a-c073fda1c692d7c74415d26fb483d6336330fcc0.tar.gz
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
Diffstat (limited to 'plat/nvidia/tegra/soc/t132')
-rw-r--r--plat/nvidia/tegra/soc/t132/plat_setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plat/nvidia/tegra/soc/t132/plat_setup.c b/plat/nvidia/tegra/soc/t132/plat_setup.c
index 6ff2831f6c..5b10505783 100644
--- a/plat/nvidia/tegra/soc/t132/plat_setup.c
+++ b/plat/nvidia/tegra/soc/t132/plat_setup.c
@@ -74,7 +74,7 @@ const mmap_region_t *plat_get_mmio_map(void)
return tegra_mmap;
}
-uint64_t plat_get_syscnt_freq(void)
+unsigned long long plat_get_syscnt_freq(void)
{
return 12000000;
}