From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Rini Date: Fri, 13 Sep 2019 11:09:05 -0400 Subject: [U-Boot] [PATCH] cmd: avoid decimal conversion In-Reply-To: <068609d5f2936454d3a999de99317f1def78ceea.1568209191.git.michal.simek@xilinx.com> References: <068609d5f2936454d3a999de99317f1def78ceea.1568209191.git.michal.simek@xilinx.com> Message-ID: <20190913150905.GA5945@hodge-podge> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Wed, Sep 11, 2019 at 03:39:53PM +0200, Michal Simek wrote: > From: T Karthik Reddy > > This patch uses auto instead of decimal in simple_strtoul(). > > Signed-off-by: T Karthik Reddy > Signed-off-by: Michal Simek > --- > > cmd/test.c | 24 ++++++++++++------------ > 1 file changed, 12 insertions(+), 12 deletions(-) > > diff --git a/cmd/test.c b/cmd/test.c > index fa0c349f0827..258bfd880653 100644 > --- a/cmd/test.c > +++ b/cmd/test.c > @@ -113,28 +113,28 @@ static int do_test(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) > expr = strcmp(ap[0], ap[2]) > 0; > break; > case OP_INT_EQ: > - expr = simple_strtol(ap[0], NULL, 10) == > - simple_strtol(ap[2], NULL, 10); > + expr = simple_strtol(ap[0], NULL, 0) == > + simple_strtol(ap[2], NULL, 0); > break; > case OP_INT_NEQ: > - expr = simple_strtol(ap[0], NULL, 10) != > - simple_strtol(ap[2], NULL, 10); > + expr = simple_strtol(ap[0], NULL, 0) != > + simple_strtol(ap[2], NULL, 0); > break; > case OP_INT_LT: > - expr = simple_strtol(ap[0], NULL, 10) < > - simple_strtol(ap[2], NULL, 10); > + expr = simple_strtol(ap[0], NULL, 0) < > + simple_strtol(ap[2], NULL, 0); > break; > case OP_INT_LE: > - expr = simple_strtol(ap[0], NULL, 10) <= > - simple_strtol(ap[2], NULL, 10); > + expr = simple_strtol(ap[0], NULL, 0) <= > + simple_strtol(ap[2], NULL, 0); > break; > case OP_INT_GT: > - expr = simple_strtol(ap[0], NULL, 10) > > - simple_strtol(ap[2], NULL, 10); > + expr = simple_strtol(ap[0], NULL, 0) > > + simple_strtol(ap[2], NULL, 0); > break; > case OP_INT_GE: > - expr = simple_strtol(ap[0], NULL, 10) >= > - simple_strtol(ap[2], NULL, 10); > + expr = simple_strtol(ap[0], NULL, 0) >= > + simple_strtol(ap[2], NULL, 0); > break; > case OP_FILE_EXISTS: > expr = file_exists(ap[1], ap[2], ap[3], FS_TYPE_ANY); I'm going to NAK this, but could be argued around to changing my mind. While it's true that in general command inputs are hex and not decimal, this has been decimal since introduction in 2009. So changing it now is breaking ABI and other peoples test scripts, so I don't think we can do this, sorry. -- Tom -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: