diff options
author | Simon Glass <sjg@chromium.org> | 2020-05-10 11:40:00 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-18 17:33:33 -0400 |
commit | 52f24238046ca28085f6de946d0358e5c7c7cbe8 (patch) | |
tree | 960e1e8fd0ab37ccb58817f4acc1dffb018801e8 /arch/arc/lib/bootm.c | |
parent | b67eefdb6ec9467c41b1c0081f0823bbfff36b00 (diff) | |
download | u-boot-52f24238046ca28085f6de946d0358e5c7c7cbe8.tar.gz |
common: Drop bootstage.h from common header
Move this fairly uncommon header out of the common header.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arc/lib/bootm.c')
-rw-r--r-- | arch/arc/lib/bootm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arc/lib/bootm.c b/arch/arc/lib/bootm.c index d38c18ef8f..1b08ffe285 100644 --- a/arch/arc/lib/bootm.c +++ b/arch/arc/lib/bootm.c @@ -3,9 +3,10 @@ * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved. */ +#include <common.h> +#include <bootstage.h> #include <irq_func.h> #include <asm/cache.h> -#include <common.h> DECLARE_GLOBAL_DATA_PTR; |