diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-28 10:44:46 -0700 |
---|---|---|
committer | Jagan Teki <jagan@amarulasolutions.com> | 2020-01-24 23:06:48 +0530 |
commit | 0f67fc232834eec476f5f34a752ed10e17637265 (patch) | |
tree | a1407ada3c1cec5b26bc6f258b57af926b6854bd /common | |
parent | 532f90235aa8824037b13bc559723b55620370fe (diff) | |
download | u-boot-0f67fc232834eec476f5f34a752ed10e17637265.tar.gz |
common: Move jumptable_init() out of common.h
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>
Diffstat (limited to 'common')
-rw-r--r-- | common/board_r.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/board_r.c b/common/board_r.c index e7c2594296..2f5e534489 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -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? */ |