diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-28 10:44:46 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-17 13:26:49 -0500 |
commit | a6f2aafe0966f23e3fb3146fb80a4565163157c3 (patch) | |
tree | c19e3e99cfa665fd4bcb353570c3111235029b38 /common | |
parent | 941338725d339c233379def75adeaa0977587a96 (diff) | |
download | u-boot-a6f2aafe0966f23e3fb3146fb80a4565163157c3.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? */ |