]> Git Repo - J-u-boot.git/blame - cmd/reginfo.c
Merge patch series "Add OPP_LOW support for J7200"
[J-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, [email protected]
e887afc9
WD
5 */
6
e887afc9 7#include <command.h>
f3603b43 8#include <asm/ppc.h>
65c450b4 9
09140113
SG
10static int do_reginfo(struct cmd_tbl *cmdtp, int flag, int argc,
11 char *const argv[])
e887afc9 12{
f3603b43 13 print_reginfo();
4f93f8b1 14
e887afc9
WD
15 return 0;
16}
17
8bde7f77
WD
18 /**************************************************/
19
0d498393 20U_BOOT_CMD(
53677ef1 21 reginfo, 2, 1, do_reginfo,
2fb2604d 22 "print register information",
a89c33db 23 ""
8bde7f77 24);
This page took 0.555931 seconds and 4 git commands to generate.