Commit 0e3612e0 authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Kalle Valo

mt76x0: remove unused mt76x0_mcu structure

Remove no longer used mt76x0_mcu data structure
Signed-off-by: default avatarLorenzo Bianconi <lorenzo.bianconi@redhat.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 6f4796b7
...@@ -452,8 +452,6 @@ int mt76x0_mcu_init(struct mt76x0_dev *dev) ...@@ -452,8 +452,6 @@ int mt76x0_mcu_init(struct mt76x0_dev *dev)
{ {
int ret; int ret;
mutex_init(&dev->mcu.mutex);
ret = mt76x0_load_firmware(dev); ret = mt76x0_load_firmware(dev);
if (ret) if (ret)
return ret; return ret;
......
...@@ -49,19 +49,6 @@ struct mt76x0_dma_buf { ...@@ -49,19 +49,6 @@ struct mt76x0_dma_buf {
size_t len; size_t len;
}; };
struct mt76x0_mcu {
struct mutex mutex;
u8 msg_seq;
struct mt76x0_dma_buf resp;
struct mt76_reg_pair *reg_pairs;
unsigned int reg_pairs_len;
u32 reg_base;
bool burst_read;
};
struct mac_stats { struct mac_stats {
u64 rx_stat[6]; u64 rx_stat[6];
u64 tx_stat[6]; u64 tx_stat[6];
...@@ -160,8 +147,6 @@ struct mt76x0_dev { ...@@ -160,8 +147,6 @@ struct mt76x0_dev {
unsigned long wcid_mask[DIV_ROUND_UP(N_WCIDS, BITS_PER_LONG)]; unsigned long wcid_mask[DIV_ROUND_UP(N_WCIDS, BITS_PER_LONG)];
unsigned long vif_mask; unsigned long vif_mask;
struct mt76x0_mcu mcu;
struct delayed_work cal_work; struct delayed_work cal_work;
struct delayed_work mac_work; struct delayed_work mac_work;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment