1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com> 4 */ 5 6 #include <common.h> 7 #include <command.h> 8 #include <hang.h> 9 do_reset(struct cmd_tbl * cmdtp,int flag,int argc,char * const argv[])10int do_reset(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) 11 { 12 printf("resetting ...\n"); 13 14 printf("reset not supported yet\n"); 15 hang(); 16 17 return 0; 18 } 19