Commit 06170b11 authored by Linus Torvalds's avatar Linus Torvalds

amd8111e network driver: fix silly typo

That's "cpu", not "cpy".
parent 4ae0b84f
...@@ -809,7 +809,7 @@ static int amd8111e_rx_poll(struct net_device *dev, int * budget) ...@@ -809,7 +809,7 @@ static int amd8111e_rx_poll(struct net_device *dev, int * budget)
#if AMD8111E_VLAN_TAG_USED #if AMD8111E_VLAN_TAG_USED
if(lp->vlgrp != NULL && (vtag == TT_VLAN_TAGGED)){ if(lp->vlgrp != NULL && (vtag == TT_VLAN_TAGGED)){
amd8111e_vlan_rx(lp, skb, amd8111e_vlan_rx(lp, skb,
le16_to_cpy(lp->rx_ring[rx_index].tag_ctrl_info)); le16_to_cpu(lp->rx_ring[rx_index].tag_ctrl_info));
} else } else
#endif #endif
netif_receive_skb(skb); netif_receive_skb(skb);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment