]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
bnx2x: Get rid of useless temporary variable
authorAndy Shevchenko <andy.shevchenko@gmail.com>
Thu, 27 Apr 2017 13:37:01 +0000 (16:37 +0300)
committerDavid S. Miller <davem@davemloft.net>
Mon, 1 May 2017 02:28:00 +0000 (22:28 -0400)
Replace pattern

 int status;
 ...
 status = func(...);
 return status;

by

 return func(...);

No functional change intented.

Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/broadcom/bnx2x/bnx2x_link.c

index 6d11a958200f546b876a6bb521a9b857fddadc69..7dd83d0ef0a0be93e63576d1ba1c5c9f30cdb63f 100644 (file)
@@ -10618,22 +10618,19 @@ static u8 bnx2x_848xx_read_status(struct bnx2x_phy *phy,
 
 static int bnx2x_8485x_format_ver(u32 raw_ver, u8 *str, u16 *len)
 {
-       int status = 0;
        u32 num;
 
        num = ((raw_ver & 0xF80) >> 7) << 16 | ((raw_ver & 0x7F) << 8) |
              ((raw_ver & 0xF000) >> 12);
-       status = bnx2x_3_seq_format_ver(num, str, len);
-       return status;
+       return bnx2x_3_seq_format_ver(num, str, len);
 }
 
 static int bnx2x_848xx_format_ver(u32 raw_ver, u8 *str, u16 *len)
 {
-       int status = 0;
        u32 spirom_ver;
+
        spirom_ver = ((raw_ver & 0xF80) >> 7) << 16 | (raw_ver & 0x7F);
-       status = bnx2x_format_ver(spirom_ver, str, len);
-       return status;
+       return bnx2x_format_ver(spirom_ver, str, len);
 }
 
 static void bnx2x_8481_hw_reset(struct bnx2x_phy *phy,
@@ -12484,13 +12481,12 @@ static int bnx2x_populate_ext_phy(struct bnx2x *bp,
 static int bnx2x_populate_phy(struct bnx2x *bp, u8 phy_index, u32 shmem_base,
                              u32 shmem2_base, u8 port, struct bnx2x_phy *phy)
 {
-       int status = 0;
        phy->type = PORT_HW_CFG_XGXS_EXT_PHY_TYPE_NOT_CONN;
        if (phy_index == INT_PHY)
                return bnx2x_populate_int_phy(bp, shmem_base, port, phy);
-       status = bnx2x_populate_ext_phy(bp, phy_index, shmem_base, shmem2_base,
+
+       return bnx2x_populate_ext_phy(bp, phy_index, shmem_base, shmem2_base,
                                        port, phy);
-       return status;
 }
 
 static void bnx2x_phy_def_cfg(struct link_params *params,