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

Commit 2edcd4ca authored by Stephen Rothwell's avatar Stephen Rothwell Committed by David S. Miller
Browse files

net: fix typo in drivers/net/ethernet/xilinx/ll_temac_main.c



Commit 9e903e08 ("net: add skb frag size accessors") used frag_size
instead of skb_frag_size in this file.

Fixes this build error:

drivers/net/ethernet/xilinx/ll_temac_main.c: In function 'temac_start_xmit':
drivers/net/ethernet/xilinx/ll_temac_main.c:717:3: error: implicit declaration of function 'frag_size' [-Werror=implicit-function-declaration]

Signed-off-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0ad92ad0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -716,8 +716,8 @@ static int temac_start_xmit(struct sk_buff *skb, struct net_device *ndev)
		cur_p = &lp->tx_bd_v[lp->tx_bd_tail];
		cur_p->phys = dma_map_single(ndev->dev.parent,
					     skb_frag_address(frag),
					     frag_size(frag), DMA_TO_DEVICE);
		cur_p->len = frag_size(frag);
					     skb_frag_size(frag), DMA_TO_DEVICE);
		cur_p->len = skb_frag_size(frag);
		cur_p->app0 = 0;
		frag++;
	}