This patch reduces the indentation of "devinfo", to reduce the amount of
overly long lines.

And while we're at it, also remove the fixed-size of the human-readable
area. As entries didn't align anyway (because of indentation), this was
just eating more space without giving much more readability.

Signed-off-by: Holger Schurig <holgerschu...@gmail.com>
---
 commands/devinfo.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/commands/devinfo.c b/commands/devinfo.c
index 448792d..3fb309b 100644
--- a/commands/devinfo.c
+++ b/commands/devinfo.c
@@ -25,15 +25,15 @@ static int do_devinfo_subtree(struct device_d *dev, int 
depth)
        int i;
 
        for (i = 0; i < depth; i++)
-               printf("     ");
+               printf("   ");
 
-       printf("`---- %s", dev_name(dev));
+       printf("`-- %s", dev_name(dev));
        if (!list_empty(&dev->cdevs)) {
                printf("\n");
                list_for_each_entry(cdev, &dev->cdevs, devices_list) {
                        for (i = 0; i < depth + 1; i++)
-                               printf("     ");
-                       printf("`---- 0x%08llx-0x%08llx (%10s): /dev/%s\n",
+                               printf("   ");
+                       printf("`-- 0x%08llx-0x%08llx (%s): /dev/%s\n",
                                        cdev->offset,
                                        cdev->offset + cdev->size - 1,
                                        size_human_readable(cdev->size),
-- 
1.7.10.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

Reply via email to