linuxOS_D21X/source/uboot-2021.10/arch/riscv/lib/reset.c
2024-11-29 16:13:46 +08:00

20 lines
339 B
C

// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
*/
#include <common.h>
#include <command.h>
#include <hang.h>
__weak int do_reset(struct cmd_tbl *cmdtp, int flag, int argc,
char *const argv[])
{
printf("resetting ...\n");
printf("reset not supported yet\n");
hang();
return 0;
}