Fix a naming collision introduced in last big commit
This commit is contained in:
parent
4f1b96b29b
commit
920a9592d1
@ -913,19 +913,19 @@ config TIVA_BADCRC
|
|||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "Work queue"
|
prompt "Work queue"
|
||||||
default TIVA_ETHERNET_LPWORK if SCHED_LPWORK
|
default LM3S_ETHERNET_LPWORK if SCHED_LPWORK
|
||||||
default TIVA_ETHERNET_HPWORK if !SCHED_LPWORK && SCHED_HPWORK
|
default LM3S_ETHERNET_HPWORK if !SCHED_LPWORK && SCHED_HPWORK
|
||||||
depends on SCHED_WORKQUEUE
|
depends on SCHED_WORKQUEUE
|
||||||
---help---
|
---help---
|
||||||
Work queue support is required to use the Ethernet driver. If the
|
Work queue support is required to use the Ethernet driver. If the
|
||||||
low priority work queue is available, then it should be used by the
|
low priority work queue is available, then it should be used by the
|
||||||
driver.
|
driver.
|
||||||
|
|
||||||
config TIVA_ETHERNET_HPWORK
|
config LM3S_ETHERNET_HPWORK
|
||||||
bool "High priority"
|
bool "High priority"
|
||||||
depends on SCHED_HPWORK
|
depends on SCHED_HPWORK
|
||||||
|
|
||||||
config TIVA_ETHERNET_LPWORK
|
config LM3S_ETHERNET_LPWORK
|
||||||
bool "Low priority"
|
bool "Low priority"
|
||||||
depends on SCHED_LPWORK
|
depends on SCHED_LPWORK
|
||||||
|
|
||||||
@ -1139,6 +1139,7 @@ config TIVA_ETHERNET_LPWORK
|
|||||||
depends on SCHED_LPWORK
|
depends on SCHED_LPWORK
|
||||||
|
|
||||||
endchoice # Work queue
|
endchoice # Work queue
|
||||||
|
|
||||||
config TIVA_ETHERNET_REGDEBUG
|
config TIVA_ETHERNET_REGDEBUG
|
||||||
bool "Register-Level Debug"
|
bool "Register-Level Debug"
|
||||||
default n
|
default n
|
||||||
|
@ -83,12 +83,12 @@
|
|||||||
|
|
||||||
/* Use the low priority work queue if possible */
|
/* Use the low priority work queue if possible */
|
||||||
|
|
||||||
# if defined(CONFIG_TIVA_ETHERNET_HPWORK)
|
# if defined(CONFIG_LM3S_ETHERNET_HPWORK)
|
||||||
# define ETHWORK HPWORK
|
# define ETHWORK HPWORK
|
||||||
# elif defined(CONFIG_TIVA_ETHERNET_LPWORK)
|
# elif defined(CONFIG_LM3S_ETHERNET_LPWORK)
|
||||||
# define ETHWORK LPWORK
|
# define ETHWORK LPWORK
|
||||||
# else
|
# else
|
||||||
# error Neither CONFIG_TIVA_ETHERNET_HPWORK nor CONFIG_TIVA_ETHERNET_LPWORK defined
|
# error Neither CONFIG_LM3S_ETHERNET_HPWORK nor CONFIG_LM3S_ETHERNET_LPWORK defined
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -257,7 +257,7 @@ CONFIG_TIVA_GPIOG_IRQS=y
|
|||||||
# CONFIG_TIVA_PROMISCUOUS is not set
|
# CONFIG_TIVA_PROMISCUOUS is not set
|
||||||
# CONFIG_TIVA_TIMESTAMP is not set
|
# CONFIG_TIVA_TIMESTAMP is not set
|
||||||
# CONFIG_TIVA_BADCRC is not set
|
# CONFIG_TIVA_BADCRC is not set
|
||||||
CONFIG_TIVA_ETHERNET_HPWORK=y
|
CONFIG_LM3S_ETHERNET_HPWORK=y
|
||||||
# CONFIG_TIVA_DUMPPACKET is not set
|
# CONFIG_TIVA_DUMPPACKET is not set
|
||||||
CONFIG_TIVA_BOARDMAC=y
|
CONFIG_TIVA_BOARDMAC=y
|
||||||
|
|
||||||
|
@ -257,7 +257,7 @@ CONFIG_TIVA_GPIOG_IRQS=y
|
|||||||
# CONFIG_TIVA_PROMISCUOUS is not set
|
# CONFIG_TIVA_PROMISCUOUS is not set
|
||||||
# CONFIG_TIVA_TIMESTAMP is not set
|
# CONFIG_TIVA_TIMESTAMP is not set
|
||||||
# CONFIG_TIVA_BADCRC is not set
|
# CONFIG_TIVA_BADCRC is not set
|
||||||
CONFIG_TIVA_ETHERNET_HPWORK=y
|
CONFIG_LM3S_ETHERNET_HPWORK=y
|
||||||
# CONFIG_TIVA_DUMPPACKET is not set
|
# CONFIG_TIVA_DUMPPACKET is not set
|
||||||
CONFIG_TIVA_BOARDMAC=y
|
CONFIG_TIVA_BOARDMAC=y
|
||||||
|
|
||||||
|
@ -257,7 +257,7 @@ CONFIG_TIVA_GPIOG_IRQS=y
|
|||||||
# CONFIG_TIVA_PROMISCUOUS is not set
|
# CONFIG_TIVA_PROMISCUOUS is not set
|
||||||
# CONFIG_TIVA_TIMESTAMP is not set
|
# CONFIG_TIVA_TIMESTAMP is not set
|
||||||
# CONFIG_TIVA_BADCRC is not set
|
# CONFIG_TIVA_BADCRC is not set
|
||||||
CONFIG_TIVA_ETHERNET_HPWORK=y
|
CONFIG_LM3S_ETHERNET_HPWORK=y
|
||||||
# CONFIG_TIVA_DUMPPACKET is not set
|
# CONFIG_TIVA_DUMPPACKET is not set
|
||||||
CONFIG_TIVA_BOARDMAC=y
|
CONFIG_TIVA_BOARDMAC=y
|
||||||
|
|
||||||
|
@ -250,7 +250,7 @@ CONFIG_TIVA_GPIOG_IRQS=y
|
|||||||
# CONFIG_TIVA_PROMISCUOUS is not set
|
# CONFIG_TIVA_PROMISCUOUS is not set
|
||||||
# CONFIG_TIVA_TIMESTAMP is not set
|
# CONFIG_TIVA_TIMESTAMP is not set
|
||||||
# CONFIG_TIVA_BADCRC is not set
|
# CONFIG_TIVA_BADCRC is not set
|
||||||
CONFIG_TIVA_ETHERNET_HPWORK=y
|
CONFIG_LM3S_ETHERNET_HPWORK=y
|
||||||
# CONFIG_TIVA_DUMPPACKET is not set
|
# CONFIG_TIVA_DUMPPACKET is not set
|
||||||
CONFIG_TIVA_BOARDMAC=y
|
CONFIG_TIVA_BOARDMAC=y
|
||||||
|
|
||||||
|
@ -252,7 +252,7 @@ CONFIG_TIVA_GPIOG_IRQS=y
|
|||||||
# CONFIG_TIVA_PROMISCUOUS is not set
|
# CONFIG_TIVA_PROMISCUOUS is not set
|
||||||
# CONFIG_TIVA_TIMESTAMP is not set
|
# CONFIG_TIVA_TIMESTAMP is not set
|
||||||
# CONFIG_TIVA_BADCRC is not set
|
# CONFIG_TIVA_BADCRC is not set
|
||||||
CONFIG_TIVA_ETHERNET_HPWORK=y
|
CONFIG_LM3S_ETHERNET_HPWORK=y
|
||||||
# CONFIG_TIVA_DUMPPACKET is not set
|
# CONFIG_TIVA_DUMPPACKET is not set
|
||||||
# CONFIG_TIVA_BOARDMAC is not set
|
# CONFIG_TIVA_BOARDMAC is not set
|
||||||
|
|
||||||
|
@ -247,7 +247,7 @@ CONFIG_TIVA_GPIOB_IRQS=y
|
|||||||
# CONFIG_TIVA_PROMISCUOUS is not set
|
# CONFIG_TIVA_PROMISCUOUS is not set
|
||||||
# CONFIG_TIVA_TIMESTAMP is not set
|
# CONFIG_TIVA_TIMESTAMP is not set
|
||||||
# CONFIG_TIVA_BADCRC is not set
|
# CONFIG_TIVA_BADCRC is not set
|
||||||
CONFIG_TIVA_ETHERNET_HPWORK=y
|
CONFIG_LM3S_ETHERNET_HPWORK=y
|
||||||
# CONFIG_TIVA_DUMPPACKET is not set
|
# CONFIG_TIVA_DUMPPACKET is not set
|
||||||
CONFIG_TIVA_BOARDMAC=y
|
CONFIG_TIVA_BOARDMAC=y
|
||||||
|
|
||||||
|
@ -251,7 +251,7 @@ CONFIG_TIVA_GPIOG_IRQS=y
|
|||||||
# CONFIG_TIVA_PROMISCUOUS is not set
|
# CONFIG_TIVA_PROMISCUOUS is not set
|
||||||
# CONFIG_TIVA_TIMESTAMP is not set
|
# CONFIG_TIVA_TIMESTAMP is not set
|
||||||
# CONFIG_TIVA_BADCRC is not set
|
# CONFIG_TIVA_BADCRC is not set
|
||||||
CONFIG_TIVA_ETHERNET_HPWORK=y
|
CONFIG_LM3S_ETHERNET_HPWORK=y
|
||||||
# CONFIG_TIVA_DUMPPACKET is not set
|
# CONFIG_TIVA_DUMPPACKET is not set
|
||||||
# CONFIG_TIVA_BOARDMAC is not set
|
# CONFIG_TIVA_BOARDMAC is not set
|
||||||
|
|
||||||
|
@ -251,7 +251,7 @@ CONFIG_TIVA_GPIOG_IRQS=y
|
|||||||
# CONFIG_TIVA_PROMISCUOUS is not set
|
# CONFIG_TIVA_PROMISCUOUS is not set
|
||||||
# CONFIG_TIVA_TIMESTAMP is not set
|
# CONFIG_TIVA_TIMESTAMP is not set
|
||||||
# CONFIG_TIVA_BADCRC is not set
|
# CONFIG_TIVA_BADCRC is not set
|
||||||
CONFIG_TIVA_ETHERNET_HPWORK=y
|
CONFIG_LM3S_ETHERNET_HPWORK=y
|
||||||
# CONFIG_TIVA_DUMPPACKET is not set
|
# CONFIG_TIVA_DUMPPACKET is not set
|
||||||
# CONFIG_TIVA_BOARDMAC is not set
|
# CONFIG_TIVA_BOARDMAC is not set
|
||||||
|
|
||||||
|
@ -250,7 +250,7 @@ CONFIG_TIVA_GPIOG_IRQS=y
|
|||||||
# CONFIG_TIVA_PROMISCUOUS is not set
|
# CONFIG_TIVA_PROMISCUOUS is not set
|
||||||
# CONFIG_TIVA_TIMESTAMP is not set
|
# CONFIG_TIVA_TIMESTAMP is not set
|
||||||
# CONFIG_TIVA_BADCRC is not set
|
# CONFIG_TIVA_BADCRC is not set
|
||||||
CONFIG_TIVA_ETHERNET_HPWORK=y
|
CONFIG_LM3S_ETHERNET_HPWORK=y
|
||||||
# CONFIG_TIVA_DUMPPACKET is not set
|
# CONFIG_TIVA_DUMPPACKET is not set
|
||||||
# CONFIG_TIVA_BOARDMAC is not set
|
# CONFIG_TIVA_BOARDMAC is not set
|
||||||
|
|
||||||
|
@ -261,7 +261,7 @@ CONFIG_TIVA_GPIOG_IRQS=y
|
|||||||
# CONFIG_TIVA_PROMISCUOUS is not set
|
# CONFIG_TIVA_PROMISCUOUS is not set
|
||||||
# CONFIG_TIVA_TIMESTAMP is not set
|
# CONFIG_TIVA_TIMESTAMP is not set
|
||||||
# CONFIG_TIVA_BADCRC is not set
|
# CONFIG_TIVA_BADCRC is not set
|
||||||
CONFIG_TIVA_ETHERNET_HPWORK=y
|
CONFIG_LM3S_ETHERNET_HPWORK=y
|
||||||
# CONFIG_TIVA_DUMPPACKET is not set
|
# CONFIG_TIVA_DUMPPACKET is not set
|
||||||
# CONFIG_TIVA_BOARDMAC is not set
|
# CONFIG_TIVA_BOARDMAC is not set
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user