Home | History | Annotate | Download | only in lib
      1 // SPDX-License-Identifier: GPL-2.0+
      2 /*
      3  * Copyright (C) 2017 Andes Technology Corporation
      4  * Rick Chen, Andes Technology Corporation <rick (at) andestech.com>
      5  */
      6 
      7 #include <common.h>
      8 #include <command.h>
      9 
     10 unsigned long do_go_exec(ulong (*entry)(int, char * const []),
     11 			 int argc, char * const argv[])
     12 {
     13 	cleanup_before_linux();
     14 
     15 	return entry(argc, argv);
     16 }
     17