projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8258634
)
net: ethernet: davinci: Fix build breakage
author
Thierry Reding
<
[email protected]
>
Mon, 21 Jan 2013 09:38:39 +0000
(10:38 +0100)
committer
David S. Miller
<
[email protected]
>
Mon, 21 Jan 2013 18:12:19 +0000
(13:12 -0500)
The correct name of the transmit DMA channel field in struct emac_priv
is txchan, not txch.
Signed-off-by: Thierry Reding <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
drivers/net/ethernet/ti/davinci_emac.c
patch
|
blob
|
history
diff --git
a/drivers/net/ethernet/ti/davinci_emac.c
b/drivers/net/ethernet/ti/davinci_emac.c
index 1c97c8171d3efa9d6a45ea6622506176301d19a5..242ec55110d2c42b2885ff72118d751dd351f10f 100644
(file)
--- a/
drivers/net/ethernet/ti/davinci_emac.c
+++ b/
drivers/net/ethernet/ti/davinci_emac.c
@@
-1102,7
+1102,7
@@
static int emac_dev_xmit(struct sk_buff *skb, struct net_device *ndev)
/* If there is no more tx desc left free then we need to
* tell the kernel to stop sending us tx frames.
*/
- if (unlikely(cpdma_check_free_tx_desc(priv->txch)))
+ if (unlikely(cpdma_check_free_tx_desc(priv->txch
an
)))
netif_stop_queue(ndev);
return NETDEV_TX_OK;