Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bec6bfb2 authored by Lendacky, Thomas's avatar Lendacky, Thomas Committed by David S. Miller
Browse files

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: default avatarTom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4ee45ea0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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++;
		}