summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-11-14 22:57:35 +0300
committerTom Rini <trini@konsulko.com>2019-12-03 02:23:14 +0300
commit62270f4395f86bd5231fcb9c1710e42be7d67d60 (patch)
treea17b47841340571e0d4573c8bbefd58f22ef4a77 /include
parent30c7c4347307c807b0f9f9045053339507fd699e (diff)
downloadu-boot-62270f4395f86bd5231fcb9c1710e42be7d67d60.tar.xz
common: Move some SMP functions out of common.h
These functions belong in cpu_func.h so move them over. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include')
-rw-r--r--include/common.h3
-rw-r--r--include/cpu_func.h3
2 files changed, 3 insertions, 3 deletions
diff --git a/include/common.h b/include/common.h
index 96bb42ce71..3f6a95d7e0 100644
--- a/include/common.h
+++ b/include/common.h
@@ -212,9 +212,6 @@ void reset_cpu (ulong addr);
void ft_cpu_setup(void *blob, bd_t *bd);
void ft_pci_setup(void *blob, bd_t *bd);
-void smp_set_core_boot_addr(unsigned long addr, int corenr);
-void smp_kick_all_cpus(void);
-
/* $(CPU)/speed.c */
int get_clocks (void);
ulong get_bus_freq (ulong);
diff --git a/include/cpu_func.h b/include/cpu_func.h
index 03feaa63e9..1741f7f7a6 100644
--- a/include/cpu_func.h
+++ b/include/cpu_func.h
@@ -49,4 +49,7 @@ int is_core_valid(unsigned int core);
*/
int checkcpu(void);
+void smp_set_core_boot_addr(unsigned long addr, int corenr);
+void smp_kick_all_cpus(void);
+
#endif