diff options
author | Felix Fietkau <nbd@nbd.name> | 2020-06-18 22:12:24 +0300 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2020-07-21 20:01:15 +0300 |
commit | f0efa8621550e77492719072d056f30569242b6b (patch) | |
tree | 2d72ad0ff4ec159687d4334e485c4fc181cbfa8c /drivers/net/wireless/mediatek/mt76/Makefile | |
parent | beffe070b1880e7c53e3fc76f2e4e8f31d18f7c5 (diff) | |
download | linux-f0efa8621550e77492719072d056f30569242b6b.tar.xz |
mt76: add API for testmode support
This can be used for calibration in the manufacturing process.
It supports sending a configurable number of packets with a specific rate
and configurable tx power levels / antenna settings.
It also supports receiving packets and showing some statistics, including
packet counters and detailed RSSI information.
It will only be compiled in if CONFIG_NL80211_TESTMODE is enabled
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'drivers/net/wireless/mediatek/mt76/Makefile')
-rw-r--r-- | drivers/net/wireless/mediatek/mt76/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/mediatek/mt76/Makefile b/drivers/net/wireless/mediatek/mt76/Makefile index ef663b873b0b..949b3c8ffa1b 100644 --- a/drivers/net/wireless/mediatek/mt76/Makefile +++ b/drivers/net/wireless/mediatek/mt76/Makefile @@ -9,6 +9,7 @@ mt76-y := \ tx.o agg-rx.o mcu.o mt76-$(CONFIG_PCI) += pci.o +mt76-$(CONFIG_NL80211_TESTMODE) += testmode.o mt76-usb-y := usb.o usb_trace.o |