Merge tag 'xilinx-for-v2025.01-rc3-v2' of https://source.denx.de/u-boot/custodians...
[u-boot.git] / cmd / reginfo.c
blob53b8bc41bfe518d9b6c0a60618c7f5a713d9c714
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * (C) Copyright 2000
4 * Subodh Nijsure, SkyStream Networks, snijsure@skystream.com
5 */
7 #include <command.h>
8 #include <asm/ppc.h>
10 static int do_reginfo(struct cmd_tbl *cmdtp, int flag, int argc,
11 char *const argv[])
13 print_reginfo();
15 return 0;
18 /**************************************************/
20 U_BOOT_CMD(
21 reginfo, 2, 1, do_reginfo,
22 "print register information",