summaryrefslogtreecommitdiff
path: root/arch/nds32/lib/boot.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/nds32/lib/boot.c')
-rw-r--r--arch/nds32/lib/boot.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/arch/nds32/lib/boot.c b/arch/nds32/lib/boot.c
deleted file mode 100644
index da2fd36a16..0000000000
--- a/arch/nds32/lib/boot.c
+++ /dev/null
@@ -1,17 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0+
-/*
- * Copyright (C) 2011 Andes Technology Corporation
- * Rick Chen, Andes Technology Corporation <rick@andestech.com>
- */
-
-
-#include <common.h>
-#include <command.h>
-
-unsigned long do_go_exec(ulong (*entry)(int, char * const []),
- int argc, char *const argv[])
-{
- cleanup_before_linux();
-
- return entry(argc, argv);
-}