mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
1ec49a2365
The mt76x0 driver requires the mt76 core driver to actually function. So add a 'select' to avoid embarrassing 'symbol unknown' errors when attempting to modprobe it in a module tree that doesn't include mt76.ko Signed-off-by: Valdis Kletnieks <valdis.kletnieks@vt.edu> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
38 lines
755 B
Plaintext
38 lines
755 B
Plaintext
config MT76_CORE
|
|
tristate
|
|
|
|
config MT76_USB
|
|
tristate
|
|
depends on MT76_CORE
|
|
|
|
config MT76x2_COMMON
|
|
tristate
|
|
depends on MT76_CORE
|
|
|
|
config MT76x0U
|
|
tristate "MediaTek MT76x0U (USB) support"
|
|
select MT76_CORE
|
|
depends on MAC80211
|
|
depends on USB
|
|
help
|
|
This adds support for MT7610U-based wireless USB dongles.
|
|
|
|
config MT76x2E
|
|
tristate "MediaTek MT76x2E (PCIe) support"
|
|
select MT76_CORE
|
|
select MT76x2_COMMON
|
|
depends on MAC80211
|
|
depends on PCI
|
|
---help---
|
|
This adds support for MT7612/MT7602/MT7662-based wireless PCIe devices.
|
|
|
|
config MT76x2U
|
|
tristate "MediaTek MT76x2U (USB) support"
|
|
select MT76_CORE
|
|
select MT76_USB
|
|
select MT76x2_COMMON
|
|
depends on MAC80211
|
|
depends on USB
|
|
help
|
|
This adds support for MT7612U-based wireless USB dongles.
|