]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ti-u-boot/ti-u-boot.git/blob - cmd/reginfo.c
Prepare v2024.04
[ti-u-boot/ti-u-boot.git] / cmd / reginfo.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2000
4  * Subodh Nijsure, SkyStream Networks, snijsure@skystream.com
5  */
7 #include <common.h>
8 #include <command.h>
9 #include <asm/ppc.h>
11 static int do_reginfo(struct cmd_tbl *cmdtp, int flag, int argc,
12                       char *const argv[])
13 {
14         print_reginfo();
16         return 0;
17 }
19  /**************************************************/
21 U_BOOT_CMD(
22         reginfo,        2,      1,      do_reginfo,
23         "print register information",
24         ""
25 );