summaryrefslogtreecommitdiff
path: root/arch/riscv/lib/boot.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-10-12 19:03:59 -0400
committerTom Rini <trini@konsulko.com>2023-10-24 16:34:45 -0400
commit0b9441ae76db88b6871adc31b7e59355286f2847 (patch)
treeb26e8ce64e83dd907910674f2977d56b590f516d /arch/riscv/lib/boot.c
parent8991fed97dbd5fe79354b533b32c78742a126d02 (diff)
riscv: Remove common.h usage
We can remove common.h from most cases of the code here, and only a few places need an additional header instead. Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Rick Chen <rick@andestech.com>
Diffstat (limited to 'arch/riscv/lib/boot.c')
-rw-r--r--arch/riscv/lib/boot.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/riscv/lib/boot.c b/arch/riscv/lib/boot.c
index 778d011f7ce..03014c56dce 100644
--- a/arch/riscv/lib/boot.c
+++ b/arch/riscv/lib/boot.c
@@ -4,8 +4,7 @@
* Rick Chen, Andes Technology Corporation <rick@andestech.com>
*/
-#include <common.h>
-#include <command.h>
+#include <asm/u-boot.h>
unsigned long do_go_exec(ulong (*entry)(int, char * const []),
int argc, char *const argv[])