diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-28 10:44:55 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-17 13:27:27 -0500 |
commit | 6f5fb71240cda307dcc3c031a1bce3ab4f15c308 (patch) | |
tree | 66dd4d49584a25566ade784b6b666a0849badaf8 /include | |
parent | 807765b0671d17943c9c1923e18d49ace479794e (diff) | |
download | u-boot-6f5fb71240cda307dcc3c031a1bce3ab4f15c308.tar.gz u-boot-6f5fb71240cda307dcc3c031a1bce3ab4f15c308.tar.xz u-boot-6f5fb71240cda307dcc3c031a1bce3ab4f15c308.zip |
common: arm: Move s_init() to an ARM-specific header
This function is only used on ARM devices so does not belong in the global
common header file. Move it to an ARM header.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/common.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/common.h b/include/common.h index 463eeb5d43..f38dc2ef3f 100644 --- a/include/common.h +++ b/include/common.h @@ -74,8 +74,6 @@ phys_size_t get_effective_memsize(void); int testdram(void); #endif /* CONFIG_SYS_DRAM_TEST */ -void s_init(void); - void upmconfig (unsigned int, unsigned int *, unsigned int); ulong get_tbclk (void); void reset_misc (void); |