From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-wr1-x441.google.com ([2a00:1450:4864:20::441]) by bombadil.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1gGDUh-0001mM-2o for barebox@lists.infradead.org; Sat, 27 Oct 2018 01:36:27 +0000 Received: by mail-wr1-x441.google.com with SMTP id i17-v6so2944839wre.7 for ; Fri, 26 Oct 2018 18:34:15 -0700 (PDT) MIME-Version: 1.0 References: <20181027013127.22163-1-andrew.smirnov@gmail.com> <20181027013127.22163-3-andrew.smirnov@gmail.com> In-Reply-To: <20181027013127.22163-3-andrew.smirnov@gmail.com> From: Andrey Smirnov Date: Fri, 26 Oct 2018 18:34:02 -0700 Message-ID: List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: Re: [PATCH] miitool: Fix inconsistent spacing To: Barebox List On Fri, Oct 26, 2018 at 6:31 PM Andrey Smirnov wrote: > > Make sure that there's a space between device name and it's status > string regardless if if device is using "id" field or not. > > Before: > > barebox@ZII RDU2 Board:/ miitool > mdio0-phy00: mdio:no link > mdio1-phy15: 2188000.ethernet@2188000:10 Mbit, half duplex, no link > mdio1-phy16: 2188000.ethernet@2188000:10 Mbit, half duplex, no link > mdio2-phy00: 2188000.ethernet@2188000:mdio:switch@0:no link > mdio2-phy01: 2188000.ethernet@2188000:mdio:switch@0:no link > mdio2-phy02: 2188000.ethernet@2188000:mdio:switch@0:negotiated 100baseTx-FD, link ok > mdio2-phy03: 2188000.ethernet@2188000:mdio:switch@0:no link > mdio2-phy04: 2188000.ethernet@2188000:mdio:switch@0:no link > mdio3-phy01: eth1: negotiated 1000baseT-FD flow-control, link ok > > After: > > barebox@ZII RDU2 Board:/ miitool > mdio0-phy00: mdio: no link > mdio1-phy15: 2188000.ethernet@2188000: 10 Mbit, half duplex, no link > mdio1-phy16: 2188000.ethernet@2188000: 10 Mbit, half duplex, no link > mdio2-phy00: 2188000.ethernet@2188000:mdio:switch@0: no link > mdio2-phy01: 2188000.ethernet@2188000:mdio:switch@0: no link > mdio2-phy02: 2188000.ethernet@2188000:mdio:switch@0: no link > mdio2-phy03: 2188000.ethernet@2188000:mdio:switch@0: no link > mdio2-phy04: 2188000.ethernet@2188000:mdio:switch@0: no link > mdio3-phy01: eth1: no link > > Signed-off-by: Andrey Smirnov Ugh, didn't mean to send this patch out. Sorry for the noise. Thanks, Andrey Smirnov > --- > commands/miitool.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/commands/miitool.c b/commands/miitool.c > index dea4f853c..acf61421b 100644 > --- a/commands/miitool.c > +++ b/commands/miitool.c > @@ -115,7 +115,7 @@ static int show_basic_mii(struct mii_bus *mii, struct phy_device *phydev, > for (i = 0; i < 32; i++) > mii_val[i] = mii->read(mii, phydev->addr, i); > > - printf((mii->parent->id) < 0 ? "%s: %s:" : "%s: %s%d: ", > + printf((mii->parent->id) < 0 ? "%s: %s: " : "%s: %s%d: ", > phydev->cdev.name, mii->parent->name, mii->parent->id); > > > -- > 2.17.1 > _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox