Merge tag 'u-boot-atmel-fixes-2020.07-a' of https://gitlab.denx.de/u-boot/custodians...
[oweals/u-boot.git] / arch / riscv / lib / reset.c
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
10 int 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 }