Trivial clean up of print usage and parameter checking.
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4263 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
475aeda9d6
commit
b534e42565
|
@ -27,8 +27,11 @@ void print_usage(void)
|
||||||
|
|
||||||
int print_handler(struct rom *rom, int argc, char **argv)
|
int print_handler(struct rom *rom, int argc, char **argv)
|
||||||
{
|
{
|
||||||
if (argc > 0 || argv[1] != NULL)
|
if ( argc > 0 ) {
|
||||||
printf("print\t\t\t\tShow the contents of the ROM\n");
|
ERROR("print %s? print takes no arguments.\n", argv[0]);
|
||||||
|
print_usage();
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
printf("%s: %d kB, bootblocksize %d, romsize %d, offset 0x%x\n", rom->name, rom->size / 1024,
|
printf("%s: %d kB, bootblocksize %d, romsize %d, offset 0x%x\n", rom->name, rom->size / 1024,
|
||||||
ntohl(rom->header->bootblocksize), ntohl(rom->header->romsize), ntohl(rom->header->offset));
|
ntohl(rom->header->bootblocksize), ntohl(rom->header->romsize), ntohl(rom->header->offset));
|
||||||
|
|
Loading…
Reference in New Issue