]>
Commit | Line | Data |
---|---|---|
e887afc9 WD |
1 | /* |
2 | * (C) Copyright 2000 | |
3 | * Subodh Nijsure, SkyStream Networks, [email protected] | |
4 | * | |
1a459660 | 5 | * SPDX-License-Identifier: GPL-2.0+ |
e887afc9 WD |
6 | */ |
7 | ||
8 | #include <common.h> | |
9 | #include <command.h> | |
f3603b43 | 10 | #include <asm/ppc.h> |
65c450b4 | 11 | |
088f1b19 KP |
12 | static int do_reginfo(cmd_tbl_t *cmdtp, int flag, int argc, |
13 | char * const argv[]) | |
e887afc9 | 14 | { |
f3603b43 | 15 | print_reginfo(); |
4f93f8b1 | 16 | |
e887afc9 WD |
17 | return 0; |
18 | } | |
19 | ||
8bde7f77 WD |
20 | /**************************************************/ |
21 | ||
0d498393 | 22 | U_BOOT_CMD( |
53677ef1 | 23 | reginfo, 2, 1, do_reginfo, |
2fb2604d | 24 | "print register information", |
a89c33db | 25 | "" |
8bde7f77 | 26 | ); |