mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-23 07:31:27 +02:00
This follows the example of RISC-V where <asm/global_data.h> includes <asm/u-boot.h> directly as "gd" includes a reference to bd_info already and so the first must include the second anyhow. We then remove <asm/u-boot.h> from all of the places which include references to "gd" an so have <asm/global_data.h> already. Signed-off-by: Tom Rini <trini@konsulko.com>
17 lines
370 B
C
17 lines
370 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2017 Andes Technology Corporation
|
|
* Rick Chen, Andes Technology Corporation <rick@andestech.com>
|
|
*/
|
|
|
|
#include <linux/types.h>
|
|
#include <asm/u-boot-riscv.h>
|
|
|
|
unsigned long do_go_exec(ulong (*entry)(int, char * const []),
|
|
int argc, char *const argv[])
|
|
{
|
|
cleanup_before_linux();
|
|
|
|
return entry(argc, argv);
|
|
}
|