1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-06 13:15:26 +03:00

ramips_eth: move memset call out from the loop

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19416 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2010-01-30 15:25:59 +00:00
parent 4235b93588
commit 7fff48fa3a

View File

@ -88,8 +88,8 @@ ramips_alloc_dma(struct net_device *dev)
if (!priv->tx) if (!priv->tx)
goto err_cleanup; goto err_cleanup;
memset(priv->tx, 0, NUM_TX_DESC * sizeof(struct ramips_tx_dma));
for (i = 0; i < NUM_TX_DESC; i++) { for (i = 0; i < NUM_TX_DESC; i++) {
memset(&priv->tx[i], 0, sizeof(struct ramips_tx_dma));
priv->tx[i].txd2 |= TX_DMA_LSO | TX_DMA_DONE; priv->tx[i].txd2 |= TX_DMA_LSO | TX_DMA_DONE;
priv->tx[i].txd4 &= (TX_DMA_QN_MASK | TX_DMA_PN_MASK); priv->tx[i].txd4 &= (TX_DMA_QN_MASK | TX_DMA_PN_MASK);
priv->tx[i].txd4 |= TX_DMA_QN(3) | TX_DMA_PN(1); priv->tx[i].txd4 |= TX_DMA_QN(3) | TX_DMA_PN(1);