diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-17 08:23:04 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-05 11:02:40 -0400 |
commit | 8fb69c1654ccdf22808cac714a2c2565402fcfff (patch) | |
tree | 9c9648d6dfe4b1b57cbf93c586212885685e7e5c /include/common.h | |
parent | a2038d7b1eb6c88a142aa3849ba01e9a3397ddf0 (diff) | |
download | u-boot-8fb69c1654ccdf22808cac714a2c2565402fcfff.tar.gz |
common: Move PPC4xx_SYS_INFO() et al to arch-specific header
These definitions should not be in common.h. Move them to an arch-specific
header file.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/common.h b/include/common.h index b45f392373..3f6b636fae 100644 --- a/include/common.h +++ b/include/common.h @@ -662,12 +662,6 @@ static inline ulong get_ddr_freq(ulong dummy) ulong get_ddr_freq(ulong); #endif -#if defined(CONFIG_4xx) -typedef PPC4xx_SYS_INFO sys_info_t; -int ppc440spe_revB(void); -void get_sys_info ( sys_info_t * ); -#endif - int cpu_init_r (void); /* $(CPU)/interrupts.c */ |