ipw2x00: Remove redundant variable "rc"
authorzhong jiang <zhongjiang@huawei.com>
Sat, 2 Nov 2019 08:55:21 +0000 (16:55 +0800)
committerKalle Valo <kvalo@codeaurora.org>
Wed, 6 Nov 2019 17:52:42 +0000 (19:52 +0200)
local variable "rc" is not used. It is safe to remove and
There is only one caller of libipw_qos_convert_ac_to_parameters().
hence make it void

Signed-off-by: zhong jiang <zhongjiang@huawei.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/intel/ipw2x00/libipw_rx.c

index 34cfd8162855965fcff6209bc1885a80c9fe7270..0cb36d1b983a318da7c6b310d4686e68ff29b436 100644 (file)
@@ -999,13 +999,12 @@ static int libipw_read_qos_info_element(struct
 /*
  * Write QoS parameters from the ac parameters.
  */
-static int libipw_qos_convert_ac_to_parameters(struct
+static void libipw_qos_convert_ac_to_parameters(struct
                                                  libipw_qos_parameter_info
                                                  *param_elm, struct
                                                  libipw_qos_parameters
                                                  *qos_param)
 {
-       int rc = 0;
        int i;
        struct libipw_qos_ac_parameter *ac_params;
        u32 txop;
@@ -1030,7 +1029,6 @@ static int libipw_qos_convert_ac_to_parameters(struct
                txop = le16_to_cpu(ac_params->tx_op_limit) * 32;
                qos_param->tx_op_limit[i] = cpu_to_le16(txop);
        }
-       return rc;
 }
 
 /*