ethoc: fix typo to compute number of tx descriptors
authorThomas Chou <thomas@wytron.com.tw>
Sun, 4 Oct 2009 23:33:17 +0000 (23:33 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 7 Oct 2009 10:50:11 +0000 (03:50 -0700)
It should be max() instead of min(). Use 1/4 of available
descriptors for tx, and there should be at least 2 tx
descriptors.

Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethoc.c

index b7311bc00258569e210949fcf2c17ceaaa62b46b..747562037e238a01abee17b370ad819ed1c9ca7e 100644 (file)
@@ -655,7 +655,7 @@ static int ethoc_open(struct net_device *dev)
 
        /* calculate the number of TX/RX buffers */
        num_bd = (dev->mem_end - dev->mem_start + 1) / ETHOC_BUFSIZ;
-       priv->num_tx = min(min_tx, num_bd / 4);
+       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);