mirror of https://gitee.com/openkylin/linux.git
net: ibm: remove redundant local variables 'act_nr_of_entries' and 'act_pages'
That local variable are never used after being assigned. hence it should be redundant and can be removed. Signed-off-by: zhong jiang <zhongjiang@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c1f9a93d93
commit
c8c618afc2
|
@ -125,7 +125,7 @@ struct ehea_cq *ehea_create_cq(struct ehea_adapter *adapter,
|
||||||
struct ehea_cq *cq;
|
struct ehea_cq *cq;
|
||||||
struct h_epa epa;
|
struct h_epa epa;
|
||||||
u64 *cq_handle_ref, hret, rpage;
|
u64 *cq_handle_ref, hret, rpage;
|
||||||
u32 act_nr_of_entries, act_pages, counter;
|
u32 counter;
|
||||||
int ret;
|
int ret;
|
||||||
void *vpage;
|
void *vpage;
|
||||||
|
|
||||||
|
@ -140,8 +140,6 @@ struct ehea_cq *ehea_create_cq(struct ehea_adapter *adapter,
|
||||||
cq->adapter = adapter;
|
cq->adapter = adapter;
|
||||||
|
|
||||||
cq_handle_ref = &cq->fw_handle;
|
cq_handle_ref = &cq->fw_handle;
|
||||||
act_nr_of_entries = 0;
|
|
||||||
act_pages = 0;
|
|
||||||
|
|
||||||
hret = ehea_h_alloc_resource_cq(adapter->handle, &cq->attr,
|
hret = ehea_h_alloc_resource_cq(adapter->handle, &cq->attr,
|
||||||
&cq->fw_handle, &cq->epas);
|
&cq->fw_handle, &cq->epas);
|
||||||
|
|
Loading…
Reference in New Issue