From: Ahmad Fatoum <ahmad@a3f.at> To: barebox@lists.infradead.org Cc: Ahmad Fatoum <ahmad@a3f.at> Subject: [PATCH] commands: devinfo: Omit parent if direct descendent of bus Date: Mon, 29 Nov 2021 09:03:56 +0100 Message-ID: <20211129080356.2025369-1-ahmad@a3f.at> (raw) In that case parentage adds no extra info, so we can just omit it. Signed-off-by: Ahmad Fatoum <ahmad@a3f.at> --- v1 -> v2: - add commands: prefix - check dev->bus before dereferencing it --- commands/devinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/devinfo.c b/commands/devinfo.c index 2e2e48e42cc5..32fd55ebd515 100644 --- a/commands/devinfo.c +++ b/commands/devinfo.c @@ -85,7 +85,7 @@ static int do_devinfo(int argc, char *argv[]) if (dev->info) dev->info(dev); - if (dev->parent) + if (dev->parent && (!dev->bus || dev->bus->dev != dev->parent)) printf("Parent: %s\n", dev_name(dev->parent)); first = true; -- 2.33.0 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2021-11-29 8:05 UTC|newest] Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-11-29 8:03 Ahmad Fatoum [this message] 2021-11-30 10:19 ` Sascha Hauer
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20211129080356.2025369-1-ahmad@a3f.at \ --to=ahmad@a3f.at \ --cc=barebox@lists.infradead.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
mail archive of the barebox mailing list This inbox may be cloned and mirrored by anyone: git clone --mirror https://lore.barebox.org/barebox/0 barebox/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 barebox barebox/ https://lore.barebox.org/barebox \ barebox@lists.infradead.org barebox@lists.infradead.org public-inbox-index barebox Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git