summaryrefslogtreecommitdiffstats
path: root/commands/meminfo.c
blob: 16b7a8f4cb5ba53991c7e7c2d0260344b7f64fe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <common.h>
#include <command.h>

int do_meminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
{
	malloc_stats();

	return 0;
}

U_BOOT_CMD_START(meminfo)
	.maxargs	= 1,
	.cmd		= do_meminfo,
	.usage		= "print info about memory usage",
U_BOOT_CMD_END