aboutsummaryrefslogtreecommitdiffstats
path: root/arch/xtensa
diff options
context:
space:
mode:
authorBaruch Siach <baruch@tkos.co.il>2013-05-27 02:11:59 -0400
committerChris Zankel <chris@zankel.net>2013-06-05 13:14:20 -0400
commit54c0af9f1a1bfe9639666aea789dae6a37a741cf (patch)
tree71be8c8aaed0e1f4b4e0a93fbbec6179fecd3824 /arch/xtensa
parent214fe80fcba6df6be28d6ea66762d203d84842c4 (diff)
xtensa: xtfpga: fix section mismatch
platform_calibrate_ccount() calls update_clock_frequency() which is in .init section. However, platform_calibrate_ccount() itself is only called from .init (i.e., time_init()). Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Chris Zankel <chris@zankel.net>
Diffstat (limited to 'arch/xtensa')
-rw-r--r--arch/xtensa/platforms/xtfpga/setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/xtensa/platforms/xtfpga/setup.c b/arch/xtensa/platforms/xtfpga/setup.c
index 96ef8eeb064e..c7ce62ff73f7 100644
--- a/arch/xtensa/platforms/xtfpga/setup.c
+++ b/arch/xtensa/platforms/xtfpga/setup.c
@@ -163,7 +163,7 @@ void platform_heartbeat(void)
163 163
164#ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT 164#ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT
165 165
166void platform_calibrate_ccount(void) 166void __init platform_calibrate_ccount(void)
167{ 167{
168 long clk_freq = 0; 168 long clk_freq = 0;
169#ifdef CONFIG_OF 169#ifdef CONFIG_OF