WIP FPC-III support
[linux/fpc-iii.git] / drivers / net / wireless / mediatek / mt76 / mt76x2 / mac.h
blobd5c3d26b94c1acb5052752de54eba7572badad59
1 /* SPDX-License-Identifier: ISC */
2 /*
3 * Copyright (C) 2016 Felix Fietkau <nbd@nbd.name>
4 */
6 #ifndef __MT76x2_MAC_H
7 #define __MT76x2_MAC_H
9 #include "mt76x2.h"
11 struct mt76x02_dev;
12 struct mt76x2_sta;
13 struct mt76x02_vif;
15 void mt76x2_mac_stop(struct mt76x02_dev *dev, bool force);
17 static inline void mt76x2_mac_resume(struct mt76x02_dev *dev)
19 mt76_wr(dev, MT_MAC_SYS_CTRL,
20 MT_MAC_SYS_CTRL_ENABLE_TX |
21 MT_MAC_SYS_CTRL_ENABLE_RX);
24 #endif