]>
Commit | Line | Data |
---|---|---|
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 | ||
7 | #include <common.h> | |
8 | #include <command.h> | |
f3603b43 | 9 | #include <asm/ppc.h> |
65c450b4 | 10 | |
09140113 SG |
11 | static 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 | 21 | U_BOOT_CMD( |
53677ef1 | 22 | reginfo, 2, 1, do_reginfo, |
2fb2604d | 23 | "print register information", |
a89c33db | 24 | "" |
8bde7f77 | 25 | ); |