diff options
author | Luca Tettamanti <[email protected]> | 2010-09-22 10:42:31 +0000 |
---|---|---|
committer | David S. Miller <[email protected]> | 2010-09-22 13:52:45 -0700 |
commit | 3f5a2a713aad28480d86b0add00c68484b54febc (patch) | |
tree | 1f1642ae02c7e3db0f45e3917b01ee91624be640 | |
parent | ec5a32f67c603b11d68eb283d94eb89a4f6cfce1 (diff) |
atl1: zero out CMB and SBM in atl1_free_ring_resources
They are allocated in atl1_setup_ring_resources, zero out the pointers
in atl1_free_ring_resources (like the other resources).
Signed-off-by: Luca Tettamanti <[email protected]>
Acked-by: Chris Snook <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
-rw-r--r-- | drivers/net/atlx/atl1.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/atlx/atl1.c b/drivers/net/atlx/atl1.c index bbd6e3009be0..c73be2848319 100644 --- a/drivers/net/atlx/atl1.c +++ b/drivers/net/atlx/atl1.c @@ -1251,6 +1251,12 @@ static void atl1_free_ring_resources(struct atl1_adapter *adapter) rrd_ring->desc = NULL; rrd_ring->dma = 0; + + adapter->cmb.dma = 0; + adapter->cmb.cmb = NULL; + + adapter->smb.dma = 0; + adapter->smb.smb = NULL; } static void atl1_setup_mac_ctrl(struct atl1_adapter *adapter) |