]> Git Repo - u-boot.git/blob - cmd/reginfo.c
Merge branch 'qcom-main' of https://source.denx.de/u-boot/custodians/u-boot-snapdragon
[u-boot.git] / cmd / reginfo.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2000
4  * Subodh Nijsure, SkyStream Networks, [email protected]
5  */
6
7 #include <command.h>
8 #include <asm/ppc.h>
9
10 static int do_reginfo(struct cmd_tbl *cmdtp, int flag, int argc,
11                       char *const argv[])
12 {
13         print_reginfo();
14
15         return 0;
16 }
17
18  /**************************************************/
19
20 U_BOOT_CMD(
21         reginfo,        2,      1,      do_reginfo,
22         "print register information",
23         ""
24 );
This page took 0.027019 seconds and 4 git commands to generate.