diff options
author | Jeroen Hofstee <jeroen@myspectrum.nl> | 2014-10-08 22:57:51 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-25 15:27:15 -0400 |
commit | 73063c0422e6c5011fbe660826933100dd491322 (patch) | |
tree | 17ae37a51fd9dd652bb54e2ff88528808fd71123 /common/cmd_elf.c | |
parent | 67c398d2c0eb72e2ae566fe72c2a80173cc36d10 (diff) | |
download | u-boot-73063c0422e6c5011fbe660826933100dd491322.tar.gz u-boot-73063c0422e6c5011fbe660826933100dd491322.tar.xz u-boot-73063c0422e6c5011fbe660826933100dd491322.zip |
common/cmd_elf.c: add missing include
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
[trini: bootm.h must come after common.h]
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'common/cmd_elf.c')
-rw-r--r-- | common/cmd_elf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/cmd_elf.c b/common/cmd_elf.c index 2f229d739a..42a52965c2 100644 --- a/common/cmd_elf.c +++ b/common/cmd_elf.c @@ -14,6 +14,7 @@ */ #include <common.h> +#include <bootm.h> #include <command.h> #include <linux/ctype.h> #include <net.h> |