diff options
author | Simon Glass <sjg@chromium.org> | 2019-11-14 12:57:48 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-02 18:25:25 -0500 |
commit | d67bdaa7999944001391fc238f00dfbaf7e9929a (patch) | |
tree | bcf9a9cd15efea52f169419bf1c1e59f9f7669c9 /include/common.h | |
parent | 2cf431c228776d9899dfb980086b86d4dd3b2473 (diff) | |
download | u-boot-d67bdaa7999944001391fc238f00dfbaf7e9929a.tar.gz u-boot-d67bdaa7999944001391fc238f00dfbaf7e9929a.tar.bz2 u-boot-d67bdaa7999944001391fc238f00dfbaf7e9929a.zip |
common: Move trap_init() out of common.h
Move this function into the init.h header file.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h index a292d91939..e946e4d9b7 100644 --- a/include/common.h +++ b/include/common.h @@ -145,7 +145,6 @@ void relocate_code(ulong); void relocate_code(ulong, gd_t *, ulong) __attribute__ ((noreturn)); #endif ulong get_endaddr (void); -void trap_init (ulong); void s_init(void); |