]> Git Repo - J-u-boot.git/blame - arch/riscv/lib/boot.c
command: Remove the cmd_tbl_t typedef
[J-u-boot.git] / arch / riscv / lib / boot.c
CommitLineData
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 10unsigned 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}
This page took 0.109013 seconds and 4 git commands to generate.