summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorMario Six <mario.six@gdsys.cc>2018-01-15 11:08:26 +0100
committerJoe Hershberger <joe.hershberger@ni.com>2018-02-26 15:47:43 -0600
commitc55038988199fc7bde34ef1a8b6db22b5bbd908c (patch)
treedadc6c8be214e5faafc650592e79085e8d08dd85 /cmd
parent431be621c6cbc72efd1d45fa36686a682cbb470a (diff)
cmd: mdio: Fix style violations
Fix some style violations in the MDIO command. Acked-by: Joe Hershberger <joe.hershberger@ni.com> Signed-off-by: Mario Six <mario.six@gdsys.cc>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/mdio.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/cmd/mdio.c b/cmd/mdio.c
index 21dc103736..3f11963006 100644
--- a/cmd/mdio.c
+++ b/cmd/mdio.c
@@ -14,7 +14,6 @@
#include <miiphy.h>
#include <phy.h>
-
static char last_op[2];
static uint last_data;
static uint last_addr_lo;
@@ -243,13 +242,13 @@ static int do_mdio(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
case 'r':
if (pos > 1)
if (extract_reg_range(argv[pos--], &devadlo, &devadhi,
- &reglo, &reghi))
+ &reglo, &reghi))
return -1;
default:
if (pos > 1)
- if (extract_phy_range(&(argv[2]), pos - 1, &bus,
- &phydev, &addrlo, &addrhi))
+ if (extract_phy_range(&argv[2], pos - 1, &bus,
+ &phydev, &addrlo, &addrhi))
return -1;
break;