mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
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>
This commit is contained in:
parent
431be621c6
commit
c550389881
1 changed files with 3 additions and 4 deletions
|
@ -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,
|
||||
®lo, ®hi))
|
||||
®lo, ®hi))
|
||||
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;
|
||||
|
|
Loading…
Add table
Reference in a new issue