|
|
@@ -1622,11 +1622,10 @@ static int sky2_alloc_buffers(struct sky2_port *sky2)
|
|
|
if (!sky2->tx_ring)
|
|
|
goto nomem;
|
|
|
|
|
|
- sky2->rx_le = pci_alloc_consistent(hw->pdev, RX_LE_BYTES,
|
|
|
- &sky2->rx_le_map);
|
|
|
+ sky2->rx_le = pci_zalloc_consistent(hw->pdev, RX_LE_BYTES,
|
|
|
+ &sky2->rx_le_map);
|
|
|
if (!sky2->rx_le)
|
|
|
goto nomem;
|
|
|
- memset(sky2->rx_le, 0, RX_LE_BYTES);
|
|
|
|
|
|
sky2->rx_ring = kcalloc(sky2->rx_pending, sizeof(struct rx_ring_info),
|
|
|
GFP_KERNEL);
|