common: Move jumptable_init() out of common.h
authorSimon Glass <sjg@chromium.org>
Sat, 28 Dec 2019 17:44:46 +0000 (10:44 -0700)
committerJagan Teki <jagan@amarulasolutions.com>
Fri, 24 Jan 2020 17:36:48 +0000 (23:06 +0530)
This function is defined in exports.c so move it to its header file.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
common/board_r.c
include/common.h
include/exports.h

index e7c25942965b780b917494b4ba161e68f994dc29..2f5e534489561aaf4c48a7eb7f8ce51d966ae587 100644 (file)
@@ -12,6 +12,7 @@
 #include <common.h>
 #include <api.h>
 #include <cpu_func.h>
+#include <exports.h>
 #include <irq_func.h>
 #include <u-boot/crc.h>
 /* TODO: can we just include all these headers whether needed or not? */
index 82228e20507ab3d153ca9e738b8d2f01f8caaa87..6b7b199ab45dcb11572766c7a9618754123b92c6 100644 (file)
@@ -80,9 +80,6 @@ extern ulong load_addr;               /* Default Load Address */
 extern ulong save_addr;                /* Default Save Address */
 extern ulong save_size;                /* Default Save Size */
 
-/* common/exports.c */
-void   jumptable_init(void);
-
 /* common/kallsysm.c */
 const char *symbol_lookup(unsigned long addr, unsigned long *caddr);
 
index 35f463287fb0950a8ede3e7a1e3aa299b44a73c6..cbd16fc5185ea68675c323b511bb0bc7366c238c 100644 (file)
@@ -13,6 +13,9 @@
 
 struct spi_slave;
 
+/* Set up the jump table for use by the API */
+void jumptable_init(void);
+
 /* These are declarations of exported functions available in C code */
 unsigned long get_version(void);
 int  getc(void);