]> Git Repo - J-u-boot.git/blobdiff - cmd/host.c
Merge patch series "Add OPP_LOW support for J7200"
[J-u-boot.git] / cmd / host.c
index 2334ccd9bcbd01f5a63a44728ed1e466176bfba0..e03576b4d2def808687a02f7db48d359a66426ef 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (c) 2012, Google Inc.
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <fs.h>
@@ -160,8 +159,8 @@ static void show_host_dev(struct udevice *dev)
                return;
 
        desc = dev_get_uclass_plat(blk);
-       printf("%12lu %-15s %s\n", (unsigned long)desc->lba, plat->label,
-              plat->filename);
+       printf("%12lu %6lu %-15s %s\n", (unsigned long)desc->lba, desc->blksz,
+              plat->label, plat->filename);
 }
 
 static int do_host_info(struct cmd_tbl *cmdtp, int flag, int argc,
@@ -179,7 +178,8 @@ static int do_host_info(struct cmd_tbl *cmdtp, int flag, int argc,
                        return CMD_RET_FAILURE;
        }
 
-       printf("%3s %12s %-15s %s\n", "dev", "blocks", "label", "path");
+       printf("%3s %12s %6s %-15s %s\n",
+              "dev", "blocks", "blksz", "label", "path");
        if (dev) {
                show_host_dev(dev);
        } else {
This page took 0.023948 seconds and 4 git commands to generate.