mirror of https://gitee.com/openkylin/linux.git
qed: remove redundant pointer 'name'
Pointer 'name' is being assigned but is never used hence it is redundant and can be removed. Cleans up clang warning: warning: variable 'name' set but not used [-Wunused-but-set-variable] Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5074298ab0
commit
9b0bb10a84
|
@ -221,7 +221,6 @@ qed_dcbx_update_app_info(struct qed_dcbx_results *p_data,
|
||||||
struct qed_hw_info *p_info = &p_hwfn->hw_info;
|
struct qed_hw_info *p_info = &p_hwfn->hw_info;
|
||||||
enum qed_pci_personality personality;
|
enum qed_pci_personality personality;
|
||||||
enum dcbx_protocol_type id;
|
enum dcbx_protocol_type id;
|
||||||
char *name;
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < ARRAY_SIZE(qed_dcbx_app_update); i++) {
|
for (i = 0; i < ARRAY_SIZE(qed_dcbx_app_update); i++) {
|
||||||
|
@ -231,7 +230,6 @@ qed_dcbx_update_app_info(struct qed_dcbx_results *p_data,
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
personality = qed_dcbx_app_update[i].personality;
|
personality = qed_dcbx_app_update[i].personality;
|
||||||
name = qed_dcbx_app_update[i].name;
|
|
||||||
|
|
||||||
qed_dcbx_set_params(p_data, p_info, enable,
|
qed_dcbx_set_params(p_data, p_info, enable,
|
||||||
prio, tc, type, personality);
|
prio, tc, type, personality);
|
||||||
|
|
Loading…
Reference in New Issue