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