]> git.ipfire.org Git - thirdparty/u-boot.git/blame - cmd/reginfo.c
Merge branch 'master' of git://git.denx.de/u-boot-socfpga
[thirdparty/u-boot.git] / cmd / reginfo.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
e887afc9
WD
2/*
3 * (C) Copyright 2000
4 * Subodh Nijsure, SkyStream Networks, snijsure@skystream.com
e887afc9
WD
5 */
6
7#include <common.h>
8#include <command.h>
f3603b43 9#include <asm/ppc.h>
65c450b4 10
088f1b19
KP
11static int do_reginfo(cmd_tbl_t *cmdtp, int flag, int argc,
12 char * const argv[])
e887afc9 13{
f3603b43 14 print_reginfo();
4f93f8b1 15
e887afc9
WD
16 return 0;
17}
18
8bde7f77
WD
19 /**************************************************/
20
0d498393 21U_BOOT_CMD(
53677ef1 22 reginfo, 2, 1, do_reginfo,
2fb2604d 23 "print register information",
a89c33db 24 ""
8bde7f77 25);