Commit 63cc936b authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Felix Fietkau
Browse files

mt76x0: remove unused variable in mt76x0_dev



Remove no longer used mac_lock spinlock and data array
in mt76x0_dev data structure

Signed-off-by: default avatarLorenzo Bianconi <lorenzo.bianconi@redhat.com>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent ac85ab8c
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -347,7 +347,6 @@ mt76x0_alloc_device(struct device *pdev,
	dev = container_of(mdev, struct mt76x0_dev, mt76);
	mutex_init(&dev->reg_atomic_mutex);
	mutex_init(&dev->hw_atomic_mutex);
	spin_lock_init(&dev->mac_lock);
	atomic_set(&dev->avg_ampdu_len, 1);

	return dev;
+0 −5
Original line number Diff line number Diff line
@@ -69,7 +69,6 @@ enum mt_bw {
/**
 * struct mt76x0_dev - adapter structure
 * @lock:		protects @wcid->tx_rate.
 * @mac_lock:		locks out mac80211's tx status and rx paths.
 * @mutex:		ensures exclusive access from mac80211 callbacks.
 * @reg_atomic_mutex:	ensures atomicity of indirect register accesses
 *			(accesses to RF and BBP).
@@ -79,13 +78,9 @@ enum mt_bw {
struct mt76x0_dev {
	struct mt76_dev mt76; /* must be first */

	u8 data[32];

	struct delayed_work cal_work;
	struct delayed_work mac_work;

	spinlock_t mac_lock;

	struct mt76x0_caldata caldata;

	struct mutex reg_atomic_mutex;