blob: b8cecb309dcf96d5a67750668efff74c5bbfb2bf [file] [log] [blame]
Bin Mengb984ddc2018-09-26 06:55:22 -07001// 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
9int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
10{
11 printf("resetting ...\n");
12
Rick Chen9d9b3dc2018-10-03 13:59:03 +080013 printf("reset not supported yet\n");
Bin Mengb984ddc2018-09-26 06:55:22 -070014 hang();
15
16 return 0;
17}