Skip to content

Commit

Permalink
mt76: mt7915: fix typo in function name
Browse files Browse the repository at this point in the history
Signed-off-by: Felix Fietkau <nbd@nbd.name>
  • Loading branch information
nbd168 committed Aug 24, 2020
1 parent f0beb7c commit 90c8422
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mt7915/mcu.c
Expand Up @@ -2896,7 +2896,7 @@ int mt7915_mcu_fw_dbg_ctrl(struct mt7915_dev *dev, u32 module, u8 level)
&data, sizeof(data), false);
}

static int mt7615_mcu_set_mwds(struct mt7915_dev *dev, bool enabled)
static int mt7915_mcu_set_mwds(struct mt7915_dev *dev, bool enabled)
{
struct {
u8 enable;
Expand Down Expand Up @@ -2931,7 +2931,7 @@ int mt7915_mcu_init(struct mt7915_dev *dev)

set_bit(MT76_STATE_MCU_RUNNING, &dev->mphy.state);
mt7915_mcu_fw_log_2_host(dev, 0);
mt7615_mcu_set_mwds(dev, 1);
mt7915_mcu_set_mwds(dev, 1);

return 0;
}
Expand Down

0 comments on commit 90c8422

Please sign in to comment.