mt76x2: make mt76x2_mac_reset routine static
Add static qualifier to mt76x2_mac_reset routine and remove the prototype from mt76x2_mac.h since it is used just in mt76x2_init.c Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi@redhat.com> Acked-by: Felix Fietkau <nbd@nbd.name> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
2cb161094e
commit
00dfae9a0a
|
@ -228,7 +228,7 @@ mt76x2_init_beacon_offsets(struct mt76x2_dev *dev)
|
|||
mt76_wr(dev, MT_BCN_OFFSET(i), regs[i]);
|
||||
}
|
||||
|
||||
int mt76x2_mac_reset(struct mt76x2_dev *dev, bool hard)
|
||||
static int mt76x2_mac_reset(struct mt76x2_dev *dev, bool hard)
|
||||
{
|
||||
static const u8 null_addr[ETH_ALEN] = {};
|
||||
const u8 *macaddr = dev->mt76.macaddr;
|
||||
|
|
|
@ -157,7 +157,6 @@ mt76x2_skb_tx_info(struct sk_buff *skb)
|
|||
return (void *) info->status.status_driver_data;
|
||||
}
|
||||
|
||||
int mt76x2_mac_reset(struct mt76x2_dev *dev, bool hard);
|
||||
int mt76x2_mac_start(struct mt76x2_dev *dev);
|
||||
void mt76x2_mac_stop(struct mt76x2_dev *dev, bool force);
|
||||
void mt76x2_mac_resume(struct mt76x2_dev *dev);
|
||||
|
|
Loading…
Reference in New Issue