]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/net/Kconfig
net: fec: remove obsolete FEC_MXC_MULTI
[karo-tx-uboot.git] / drivers / net / Kconfig
1 menuconfig NETDEVICES
2         bool "Network device support"
3         depends on NET
4
5 if NETDEVICES
6
7 config MII
8         bool
9
10 config FEC_MXC
11         bool "Freescale FEC ethernet controller"
12         select MII
13
14 config GET_FEC_MAC_ADDR_FROM_IIM
15         bool "Read FEC MAC address from fuses"
16         depends on FEC_MXC
17
18 if FEC_MXC
19
20 config FEC_MXC_PHYADDR
21         int "FEC Ethernet PHY address"
22         default 0
23         depends on !FEC_MXC_MULTI
24
25 endif
26
27 source "drivers/net/phy/Kconfig"
28
29 endif