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