2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2002-08-27 09:44:07 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2000
|
|
|
|
* Subodh Nijsure, SkyStream Networks, snijsure@skystream.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
2017-07-13 13:09:54 +00:00
|
|
|
#include <asm/ppc.h>
|
2007-06-12 00:01:54 +00:00
|
|
|
|
2020-05-10 17:40:03 +00:00
|
|
|
static int do_reginfo(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
|
|
char *const argv[])
|
2002-08-27 09:44:07 +00:00
|
|
|
{
|
2017-07-13 13:09:54 +00:00
|
|
|
print_reginfo();
|
2008-01-23 22:31:06 +00:00
|
|
|
|
2002-08-27 09:44:07 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-06-27 21:31:46 +00:00
|
|
|
/**************************************************/
|
|
|
|
|
2003-07-01 21:06:45 +00:00
|
|
|
U_BOOT_CMD(
|
2008-05-20 14:00:29 +00:00
|
|
|
reginfo, 2, 1, do_reginfo,
|
2009-01-28 00:03:12 +00:00
|
|
|
"print register information",
|
2009-05-24 15:06:54 +00:00
|
|
|
""
|
2003-06-27 21:31:46 +00:00
|
|
|
);
|