]> Git Repo - u-boot.git/blame_incremental - cmd/reginfo.c
powerpc: Remove unneccessary #ifdefs in reginfo
[u-boot.git] / cmd / reginfo.c
... / ...
CommitLineData
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
12static 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
22U_BOOT_CMD(
23 reginfo, 2, 1, do_reginfo,
24 "print register information",
25 ""
26);
This page took 0.023527 seconds and 4 git commands to generate.