]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
bnx2x: Reuse bnx2x_null_format_ver()
authorAndy Shevchenko <andy.shevchenko@gmail.com>
Thu, 27 Apr 2017 13:37:00 +0000 (16:37 +0300)
committerDavid S. Miller <davem@davemloft.net>
Mon, 1 May 2017 02:28:00 +0000 (22:28 -0400)
Reuse bnx2x_null_format_ver() in functions where it's appropriated
instead of open coded variant.

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 2acc4f081818bef5ac2909cb89741c973affe840..6d11a958200f546b876a6bb521a9b857fddadc69 100644 (file)
@@ -6161,14 +6161,20 @@ static void bnx2x_link_int_ack(struct link_params *params,
        }
 }
 
+static int bnx2x_null_format_ver(u32 spirom_ver, u8 *str, u16 *len)
+{
+       str[0] = '\0';
+       (*len)--;
+       return 0;
+}
+
 static int bnx2x_format_ver(u32 num, u8 *str, u16 *len)
 {
        u16 ret;
 
        if (*len < 10) {
                /* Need more than 10chars for this format */
-               *str = '\0';
-               (*len)--;
+               bnx2x_null_format_ver(num, str, len);
                return -EINVAL;
        }
 
@@ -6183,8 +6189,7 @@ static int bnx2x_3_seq_format_ver(u32 num, u8 *str, u16 *len)
 
        if (*len < 10) {
                /* Need more than 10chars for this format */
-               *str = '\0';
-               (*len)--;
+               bnx2x_null_format_ver(num, str, len);
                return -EINVAL;
        }
 
@@ -6193,13 +6198,6 @@ static int bnx2x_3_seq_format_ver(u32 num, u8 *str, u16 *len)
        return 0;
 }
 
-static int bnx2x_null_format_ver(u32 spirom_ver, u8 *str, u16 *len)
-{
-       str[0] = '\0';
-       (*len)--;
-       return 0;
-}
-
 int bnx2x_get_ext_phy_fw_version(struct link_params *params, u8 *version,
                                 u16 len)
 {