blob: 03014c56dce285422e6ec1b516fc791a2f1a83cf [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Rick Chen6eedd922017-12-26 13:55:49 +08002/*
3 * Copyright (C) 2017 Andes Technology Corporation
4 * Rick Chen, Andes Technology Corporation <rick@andestech.com>
Rick Chen6eedd922017-12-26 13:55:49 +08005 */
6
Tom Rinib6b99002023-10-12 19:03:59 -04007#include <asm/u-boot.h>
Rick Chen6eedd922017-12-26 13:55:49 +08008
Rick Chen6eedd922017-12-26 13:55:49 +08009unsigned long do_go_exec(ulong (*entry)(int, char * const []),
Simon Glassed38aef2020-05-10 11:40:03 -060010 int argc, char *const argv[])
Rick Chen6eedd922017-12-26 13:55:49 +080011{
12 cleanup_before_linux();
13
14 return entry(argc, argv);
15}