1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
4 */
5
6#include <command.h>
7#include <cpu_func.h>
8
9int do_reset(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
10{
11	reset_cpu();
12
13	return 0;
14}
15