aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/tc35815.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/tc35815.c')
-rw-r--r--drivers/net/tc35815.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/tc35815.c b/drivers/net/tc35815.c
index 99e423a5b9f1..b6eec8cea209 100644
--- a/drivers/net/tc35815.c
+++ b/drivers/net/tc35815.c
@@ -1167,7 +1167,7 @@ static void print_eth(const u8 *add)
1167static int tc35815_tx_full(struct net_device *dev) 1167static int tc35815_tx_full(struct net_device *dev)
1168{ 1168{
1169 struct tc35815_local *lp = netdev_priv(dev); 1169 struct tc35815_local *lp = netdev_priv(dev);
1170 return ((lp->tfd_start + 1) % TX_FD_NUM == lp->tfd_end); 1170 return (lp->tfd_start + 1) % TX_FD_NUM == lp->tfd_end;
1171} 1171}
1172 1172
1173static void tc35815_restart(struct net_device *dev) 1173static void tc35815_restart(struct net_device *dev)