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