]> Git Repo - J-u-boot.git/blob - arch/nds32/lib/boot.c
command: Remove the cmd_tbl_t typedef
[J-u-boot.git] / arch / nds32 / lib / boot.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2011 Andes Technology Corporation
4  * Rick Chen, Andes Technology Corporation <[email protected]>
5  */
6
7
8 #include <common.h>
9 #include <command.h>
10
11 unsigned long do_go_exec(ulong (*entry)(int, char * const []),
12                          int argc, char *const argv[])
13 {
14         cleanup_before_linux();
15
16         return entry(argc, argv);
17 }
This page took 0.026808 seconds and 4 git commands to generate.