mt76: connac: fix unresolved symbols when CONFIG_PM is unset
mt76_connac_mcu_reg_* functions are always needed by connac based drivers
Fixes: 87f9bf24ea
("mt76: connac: move mcu reg access utility routines in mt76_connac_lib module")
Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
f31a577ae7
commit
52a99a13cb
|
@ -2477,6 +2477,7 @@ void mt76_connac_mcu_set_suspend_iter(void *priv, u8 *mac,
|
|||
mt76_connac_mcu_set_wow_ctrl(phy, vif, suspend, wowlan);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(mt76_connac_mcu_set_suspend_iter);
|
||||
#endif /* CONFIG_PM */
|
||||
|
||||
u32 mt76_connac_mcu_reg_rr(struct mt76_dev *dev, u32 offset)
|
||||
{
|
||||
|
@ -2505,7 +2506,6 @@ void mt76_connac_mcu_reg_wr(struct mt76_dev *dev, u32 offset, u32 val)
|
|||
mt76_mcu_send_msg(dev, MCU_CMD_REG_WRITE, &req, sizeof(req), false);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(mt76_connac_mcu_reg_wr);
|
||||
#endif /* CONFIG_PM */
|
||||
|
||||
MODULE_AUTHOR("Lorenzo Bianconi <lorenzo@kernel.org>");
|
||||
MODULE_LICENSE("Dual BSD/GPL");
|
||||
|
|
Loading…
Reference in New Issue