mirror of
https://github.com/torvalds/linux.git
synced 2026-05-26 08:02:27 +02:00
staging: qlge: qlge_main.c: rewrite do-while loops into more compact for loops
simplify do-while loops into for loops Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Srivathsan Sivakumar <sri.skumar05@gmail.com> Link: https://lore.kernel.org/r/YqJcLwUQorZQOrkd@Sassy Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
66d653c372
commit
da30e35188
|
|
@ -3006,13 +3006,11 @@ static int qlge_start_rx_ring(struct qlge_adapter *qdev, struct rx_ring *rx_ring
|
|||
cqicb->flags |= FLAGS_LL; /* Load lbq values */
|
||||
tmp = (u64)rx_ring->lbq.base_dma;
|
||||
base_indirect_ptr = rx_ring->lbq.base_indirect;
|
||||
page_entries = 0;
|
||||
do {
|
||||
*base_indirect_ptr = cpu_to_le64(tmp);
|
||||
tmp += DB_PAGE_SIZE;
|
||||
base_indirect_ptr++;
|
||||
page_entries++;
|
||||
} while (page_entries < MAX_DB_PAGES_PER_BQ(QLGE_BQ_LEN));
|
||||
|
||||
for (page_entries = 0; page_entries <
|
||||
MAX_DB_PAGES_PER_BQ(QLGE_BQ_LEN); page_entries++)
|
||||
base_indirect_ptr[page_entries] =
|
||||
cpu_to_le64(tmp + (page_entries * DB_PAGE_SIZE));
|
||||
cqicb->lbq_addr = cpu_to_le64(rx_ring->lbq.base_indirect_dma);
|
||||
cqicb->lbq_buf_size =
|
||||
cpu_to_le16(QLGE_FIT16(qdev->lbq_buf_size));
|
||||
|
|
@ -3023,13 +3021,11 @@ static int qlge_start_rx_ring(struct qlge_adapter *qdev, struct rx_ring *rx_ring
|
|||
cqicb->flags |= FLAGS_LS; /* Load sbq values */
|
||||
tmp = (u64)rx_ring->sbq.base_dma;
|
||||
base_indirect_ptr = rx_ring->sbq.base_indirect;
|
||||
page_entries = 0;
|
||||
do {
|
||||
*base_indirect_ptr = cpu_to_le64(tmp);
|
||||
tmp += DB_PAGE_SIZE;
|
||||
base_indirect_ptr++;
|
||||
page_entries++;
|
||||
} while (page_entries < MAX_DB_PAGES_PER_BQ(QLGE_BQ_LEN));
|
||||
|
||||
for (page_entries = 0; page_entries <
|
||||
MAX_DB_PAGES_PER_BQ(QLGE_BQ_LEN); page_entries++)
|
||||
base_indirect_ptr[page_entries] =
|
||||
cpu_to_le64(tmp + (page_entries * DB_PAGE_SIZE));
|
||||
cqicb->sbq_addr =
|
||||
cpu_to_le64(rx_ring->sbq.base_indirect_dma);
|
||||
cqicb->sbq_buf_size = cpu_to_le16(SMALL_BUFFER_SIZE);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user