u-boot/cmd/reginfo.c
Tom Rini 301bac6047 cmd: Remove <common.h> and add needed includes
Remove <common.h> from all "cmd/" files and when needed add
missing include files directly.

Signed-off-by: Tom Rini <trini@konsulko.com>
2024-05-06 15:05:04 -06:00

24 lines
433 B
C

// SPDX-License-Identifier: GPL-2.0+
/*
* (C) Copyright 2000
* Subodh Nijsure, SkyStream Networks, snijsure@skystream.com
*/
#include <command.h>
#include <asm/ppc.h>
static int do_reginfo(struct cmd_tbl *cmdtp, int flag, int argc,
char *const argv[])
{
print_reginfo();
return 0;
}
/**************************************************/
U_BOOT_CMD(
reginfo, 2, 1, do_reginfo,
"print register information",
""
);