]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
amd-xgbe: Fix initialization of the wrong spin lock
authorLendacky, Thomas <Thomas.Lendacky@amd.com>
Tue, 2 Sep 2014 14:40:22 +0000 (09:40 -0500)
committerDavid S. Miller <davem@davemloft.net>
Tue, 2 Sep 2014 21:03:37 +0000 (14:03 -0700)
During allocation and initialization of the network driver structures,
the wrong pointer is used to initialize a spin lock. Fix the spin lock
initialization by using the proper pointer.

Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/amd/xgbe/xgbe-main.c

index 8aa6a9353f7bc5b5b3cf7592bc42186a93ca0bce..bdf9cfa70e88c4dac3c7f3c439fa2b3eef29aaa6 100644 (file)
@@ -172,7 +172,7 @@ static struct xgbe_channel *xgbe_alloc_rings(struct xgbe_prv_data *pdata)
                }
 
                if (i < pdata->rx_ring_count) {
                }
 
                if (i < pdata->rx_ring_count) {
-                       spin_lock_init(&tx_ring->lock);
+                       spin_lock_init(&rx_ring->lock);
                        channel->rx_ring = rx_ring++;
                }
 
                        channel->rx_ring = rx_ring++;
                }