]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
b841b6e9 | 2 | /* |
3 | * Copyright (C) 2011 Andes Technology Corporation | |
4 | * Rick Chen, Andes Technology Corporation <[email protected]> | |
b841b6e9 | 5 | */ |
6 | ||
7 | ||
8 | #include <common.h> | |
9 | #include <command.h> | |
10 | ||
b841b6e9 | 11 | unsigned long do_go_exec(ulong (*entry)(int, char * const []), |
09140113 | 12 | int argc, char *const argv[]) |
b841b6e9 | 13 | { |
14 | cleanup_before_linux(); | |
15 | ||
16 | return entry(argc, argv); | |
17 | } |