mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 04:46:51 +07:00
2ec50f574e
This patch is the preparation patch in order to adapt into various hardware through adding platform data which holds specific characteristics among MediaTek SoCs and introducing the unified clock handler for those distinct clock requirements depending on different features such as TRGMII and SGMII getting support on the target SoC. And finally, add enhancement with given the generic description for Kconfig and remove the unnecessary machine type dependency in Makefile. Signed-off-by: Sean Wang <sean.wang@mediatek.com> Signed-off-by: David S. Miller <davem@davemloft.net>
18 lines
417 B
Plaintext
18 lines
417 B
Plaintext
config NET_VENDOR_MEDIATEK
|
|
bool "MediaTek ethernet driver"
|
|
depends on ARCH_MEDIATEK
|
|
---help---
|
|
If you have a Mediatek SoC with ethernet, say Y.
|
|
|
|
if NET_VENDOR_MEDIATEK
|
|
|
|
config NET_MEDIATEK_SOC
|
|
tristate "MediaTek SoC Gigabit Ethernet support"
|
|
depends on NET_VENDOR_MEDIATEK
|
|
select PHYLIB
|
|
---help---
|
|
This driver supports the gigabit ethernet MACs in the
|
|
MediaTek SoC family.
|
|
|
|
endif #NET_VENDOR_MEDIATEK
|