diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2016-09-20 11:29:37 -0700 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2016-09-20 18:52:59 -0700 |
commit | 70feca7199647dd548536d7e6b55a742053e6839 (patch) | |
tree | 6172000ca6a811124923f5771016d14e15d428ee /arch/xtensa | |
parent | 205ad548a7426fb6813760cd9917d3fc24122576 (diff) |
xtensa: xtfpga: group platform_* functions together
Group platform_* functions together and turn two separate #ifdef/#ifndef
blocks into single #ifdef/#else. No functional changes.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'arch/xtensa')
-rw-r--r-- | arch/xtensa/platforms/xtfpga/setup.c | 46 |
1 files changed, 22 insertions, 24 deletions
diff --git a/arch/xtensa/platforms/xtfpga/setup.c b/arch/xtensa/platforms/xtfpga/setup.c index e236df450a7b..779be723eb2b 100644 --- a/arch/xtensa/platforms/xtfpga/setup.c +++ b/arch/xtensa/platforms/xtfpga/setup.c @@ -64,6 +64,27 @@ void __init platform_setup(char **cmdline) { } +/* early initialization */ + +void __init platform_init(bp_tag_t *first) +{ +} + +/* Heartbeat. */ + +void platform_heartbeat(void) +{ +} + +#ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT + +void __init platform_calibrate_ccount(void) +{ + ccount_freq = *(long *)XTFPGA_CLKFRQ_VADDR; +} + +#endif + #ifdef CONFIG_OF static void __init xtfpga_clk_setup(struct device_node *np) @@ -131,30 +152,7 @@ static int __init machine_setup(void) } arch_initcall(machine_setup); -#endif - -/* early initialization */ - -void __init platform_init(bp_tag_t *first) -{ -} - -/* Heartbeat. */ - -void platform_heartbeat(void) -{ -} - -#ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT - -void __init platform_calibrate_ccount(void) -{ - ccount_freq = *(long *)XTFPGA_CLKFRQ_VADDR; -} - -#endif - -#ifndef CONFIG_OF +#else #include <linux/serial_8250.h> #include <linux/if.h> |