diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-17 08:23:08 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-05 12:31:22 -0400 |
commit | 1c16d2e2482dd4a3991bc992d160043b257b3530 (patch) | |
tree | 8fba281df86ef0207d90811d9cf9eafd276e2a47 /arch/arm | |
parent | 68994b98fc6606b13fbd1e1d1f2406287fbbd1f8 (diff) |
common: ep93xx: Move arch-specific declarations out of common
These declarations should not be in common. Remove those that are not
needed and move the others to an arch-specific location.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/cpu/arm920t/ep93xx/speed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/arm920t/ep93xx/speed.c b/arch/arm/cpu/arm920t/ep93xx/speed.c index 9dc60b6ff2..f0ab7d4e3d 100644 --- a/arch/arm/cpu/arm920t/ep93xx/speed.c +++ b/arch/arm/cpu/arm920t/ep93xx/speed.c @@ -39,7 +39,7 @@ static ulong get_PLLCLK(uint32_t *pllreg) } /* return FCLK frequency */ -ulong get_FCLK() +ulong get_FCLK(void) { const uint8_t fclk_divisors[] = { 1, 2, 4, 8, 16, 1, 1, 1 }; struct syscon_regs *syscon = (struct syscon_regs *)SYSCON_BASE; |