]> git.ipfire.org Git - thirdparty/u-boot.git/blame - cmd/reginfo.c
Merge tag 'dm-pull-30may20' of https://gitlab.denx.de/u-boot/custodians/u-boot-dm
[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
09140113
SG
11static int do_reginfo(struct cmd_tbl *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);