mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
scsi: qedf: Remove set but unused variable 'page'
The variable page is not used in the function, so delete it. Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=2348 Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> Link: https://lore.kernel.org/r/20221009060249.40178-1-jiapeng.chong@linux.alibaba.com Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
5f62639dc2
commit
e6f8a22ff4
@ -2951,7 +2951,6 @@ static int qedf_alloc_bdq(struct qedf_ctx *qedf)
|
||||
int i;
|
||||
struct scsi_bd *pbl;
|
||||
u64 *list;
|
||||
dma_addr_t page;
|
||||
|
||||
/* Alloc dma memory for BDQ buffers */
|
||||
for (i = 0; i < QEDF_BDQ_SIZE; i++) {
|
||||
@ -3012,11 +3011,9 @@ static int qedf_alloc_bdq(struct qedf_ctx *qedf)
|
||||
qedf->bdq_pbl_list_num_entries = qedf->bdq_pbl_mem_size /
|
||||
QEDF_PAGE_SIZE;
|
||||
list = (u64 *)qedf->bdq_pbl_list;
|
||||
page = qedf->bdq_pbl_list_dma;
|
||||
for (i = 0; i < qedf->bdq_pbl_list_num_entries; i++) {
|
||||
*list = qedf->bdq_pbl_dma;
|
||||
list++;
|
||||
page += QEDF_PAGE_SIZE;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user