stmmac: drop unused Kconfig symbol
[cascardo/linux.git] / drivers / net / stmmac / Kconfig
1 config STMMAC_ETH
2         tristate "STMicroelectronics 10/100/1000 Ethernet driver"
3         select MII
4         select PHYLIB
5         select CRC32
6         depends on NETDEVICES && HAS_IOMEM
7         help
8           This is the driver for the Ethernet IPs are built around a
9           Synopsys IP Core and only tested on the STMicroelectronics
10           platforms.
11
12 if STMMAC_ETH
13
14 config STMMAC_DA
15         bool "STMMAC DMA arbitration scheme"
16         default n
17         help
18           Selecting this option, rx has priority over Tx (only for Giga
19           Ethernet device).
20           By default, the DMA arbitration scheme is based on Round-robin
21           (rx:tx priority is 1:1).
22
23 config STMMAC_TIMER
24         bool "STMMAC Timer optimisation"
25         default n
26         depends on RTC_HCTOSYS_DEVICE
27         help
28           Use an external timer for mitigating the number of network
29           interrupts. Currently, for SH architectures, it is possible
30           to use the TMU channel 2 and the SH-RTC device.
31
32 choice
33         prompt "Select Timer device"
34         depends on STMMAC_TIMER
35
36 config STMMAC_TMU_TIMER
37         bool "TMU channel 2"
38         depends on CPU_SH4
39         help
40
41 config STMMAC_RTC_TIMER
42         bool "Real time clock"
43         depends on RTC_CLASS
44         help
45
46 endchoice
47
48 endif