diff options
author | Lendacky, Thomas <Thomas.Lendacky@amd.com> | 2014-09-02 18:40:22 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-09-03 01:03:37 +0400 |
commit | bec6bfb2437f4676dbaaacba6019e9dafef18962 (patch) | |
tree | 8a7e6bc1b329c9fc10f8175ce77e4c0c552d6d2d /drivers/net/ethernet | |
parent | 4ee45ea05c8710c7ab8a5eb1a72700b874712746 (diff) | |
download | linux-bec6bfb2437f4676dbaaacba6019e9dafef18962.tar.xz |
amd-xgbe: Fix initialization of the wrong spin lock
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>
Diffstat (limited to 'drivers/net/ethernet')
-rw-r--r-- | drivers/net/ethernet/amd/xgbe/xgbe-main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/amd/xgbe/xgbe-main.c b/drivers/net/ethernet/amd/xgbe/xgbe-main.c index 8aa6a9353f7b..bdf9cfa70e88 100644 --- a/drivers/net/ethernet/amd/xgbe/xgbe-main.c +++ b/drivers/net/ethernet/amd/xgbe/xgbe-main.c @@ -172,7 +172,7 @@ static struct xgbe_channel *xgbe_alloc_rings(struct xgbe_prv_data *pdata) } if (i < pdata->rx_ring_count) { - spin_lock_init(&tx_ring->lock); + spin_lock_init(&rx_ring->lock); channel->rx_ring = rx_ring++; } |