Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 167536
b: refs/heads/master
c: 4ce2253
h: refs/heads/master
v: v3
  • Loading branch information
Alan Cox authored and David S. Miller committed Oct 13, 2009
1 parent 67760e4 commit 4346d67
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 767e366fc9e667c1ef71af588d33b7ec27c5ed1d
refs/heads/master: 4ce22537a28eeb6a29a2b4d1049c703a80c25bd1
3 changes: 2 additions & 1 deletion trunk/drivers/net/ethoc.c
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,8 @@ static int ethoc_open(struct net_device *dev)
return ret;

/* calculate the number of TX/RX buffers, maximum 128 supported */
num_bd = min(128, (dev->mem_end - dev->mem_start + 1) / ETHOC_BUFSIZ);
num_bd = min_t(unsigned int,
128, (dev->mem_end - dev->mem_start + 1) / ETHOC_BUFSIZ);
priv->num_tx = max(min_tx, num_bd / 4);
priv->num_rx = num_bd - priv->num_tx;
ethoc_write(priv, TX_BD_NUM, priv->num_tx);
Expand Down

0 comments on commit 4346d67

Please sign in to comment.