Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f106358b authored by Ian Campbell's avatar Ian Campbell Committed by David S. Miller
Browse files

mv643xx: convert to SKB paged frag API.



Signed-off-by: default avatarIan Campbell <ian.campbell@citrix.com>
Cc: Lennert Buytenhek <buytenh@wantstofly.org>
Cc: netdev@vger.kernel.org
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d1b08284
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -752,10 +752,10 @@ static void txq_submit_frag_skb(struct tx_queue *txq, struct sk_buff *skb)

		desc->l4i_chk = 0;
		desc->byte_cnt = this_frag->size;
		desc->buf_ptr = dma_map_page(mp->dev->dev.parent,
					     this_frag->page,
					     this_frag->page_offset,
					     this_frag->size, DMA_TO_DEVICE);
		desc->buf_ptr = skb_frag_dma_map(mp->dev->dev.parent,
						 this_frag, 0,
						 this_frag->size,
						 DMA_TO_DEVICE);
	}
}