]> Git Repo - J-u-boot.git/blob - arch/riscv/lib/reset.c
command: Remove the cmd_tbl_t typedef
[J-u-boot.git] / arch / riscv / lib / reset.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2018, Bin Meng <[email protected]>
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 }
This page took 0.025 seconds and 4 git commands to generate.