drivers: ethernet: Kconfig: Remove redundant 'default n' properties

Bool symbols implicitly default to 'n'.

A 'default n' can make sense e.g. in a Kconfig.defconfig file, if you
want to override a 'default y' on the base definition of the symbol. It
isn't used like that on any of these symbols though, and is
inconsistent.

This will make the auto-generated Kconfig documentation have "No
defaults. Implicitly defaults to n." as well, which is clearer than
'default n if ...'

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
This commit is contained in:
Ulf Magnusson 2018-06-27 12:12:52 +02:00 committed by Anas Nashif
commit 86c46864ee
29 changed files with 0 additions and 102 deletions

View file

@ -10,18 +10,15 @@ menuconfig ETH_DW
bool bool
prompt "Synopsys DesignWare Ethernet driver" prompt "Synopsys DesignWare Ethernet driver"
depends on NET_L2_ETHERNET depends on NET_L2_ETHERNET
default n
help help
Enable Synopsys DesignWare Ethernet driver. Enable Synopsys DesignWare Ethernet driver.
if ETH_DW if ETH_DW
config ETH_DW_SHARED_IRQ config ETH_DW_SHARED_IRQ
bool bool
default n
config ETH_DW_0 config ETH_DW_0
bool "Synopsys DesignWare Ethernet port 0" bool "Synopsys DesignWare Ethernet port 0"
default n
help help
Include port 0 driver Include port 0 driver

View file

@ -10,7 +10,6 @@ menuconfig ETH_ENC28J60
bool "ENC28J60C Ethernet Controller" bool "ENC28J60C Ethernet Controller"
depends on NET_L2_ETHERNET depends on NET_L2_ETHERNET
depends on SPI depends on SPI
default n
help help
ENC28J60C Stand-Alone Ethernet Controller ENC28J60C Stand-Alone Ethernet Controller
with SPI Interface with SPI Interface
@ -43,7 +42,6 @@ config ETH_EN28J60_TIMEOUT
config ETH_ENC28J60_0 config ETH_ENC28J60_0
bool "ENC28J60C Ethernet port 0" bool "ENC28J60C Ethernet port 0"
depends on ETH_ENC28J60 depends on ETH_ENC28J60
default n
help help
Include port 0 driver Include port 0 driver
@ -85,14 +83,12 @@ config ETH_ENC28J60_0_SLAVE
config ETH_ENC28J60_0_GPIO_SPI_CS config ETH_ENC28J60_0_GPIO_SPI_CS
bool "Manage SPI CS through a GPIO pin" bool "Manage SPI CS through a GPIO pin"
default n
help help
This option is useful if one needs to manage SPI CS through a GPIO This option is useful if one needs to manage SPI CS through a GPIO
pin to by-pass the SPI controller's CS logic. pin to by-pass the SPI controller's CS logic.
config ETH_ENC28J60_0_SPI_CS_PORT_NAME config ETH_ENC28J60_0_SPI_CS_PORT_NAME
string "SPI cs port name" string "SPI cs port name"
default ""
depends on ETH_ENC28J60_0_GPIO_SPI_CS depends on ETH_ENC28J60_0_GPIO_SPI_CS
help help
Master SPI port name through which ENC28J60C chip is accessed. Master SPI port name through which ENC28J60C chip is accessed.

View file

@ -8,7 +8,6 @@ menuconfig ETH_MCUX
bool bool
prompt "MCUX Ethernet driver" prompt "MCUX Ethernet driver"
depends on NET_L2_ETHERNET && HAS_MCUX depends on NET_L2_ETHERNET && HAS_MCUX
default n
help help
Enable MCUX Ethernet driver. Note, this driver performs one shot PHY Enable MCUX Ethernet driver. Note, this driver performs one shot PHY
setup. There is no support for PHY disconnect, reconnect or setup. There is no support for PHY disconnect, reconnect or
@ -17,7 +16,6 @@ menuconfig ETH_MCUX
if ETH_MCUX if ETH_MCUX
config ETH_MCUX_PROMISCUOUS_MODE config ETH_MCUX_PROMISCUOUS_MODE
bool "Enable promiscuous mode" bool "Enable promiscuous mode"
default n
help help
Place the Ethernet receiver in promiscuous mode. This may be useful Place the Ethernet receiver in promiscuous mode. This may be useful
for debugging and not needed for normal work. for debugging and not needed for normal work.
@ -31,7 +29,6 @@ config ETH_MCUX_PHY_TICK_MS
config ETH_MCUX_PHY_EXTRA_DEBUG config ETH_MCUX_PHY_EXTRA_DEBUG
bool "Enable additional detailed PHY debug" bool "Enable additional detailed PHY debug"
default n
help help
Enable additional PHY related debug information related to Enable additional PHY related debug information related to
PHY status polling. PHY status polling.
@ -54,7 +51,6 @@ config ETH_MCUX_TX_BUFFERS
config ETH_MCUX_0 config ETH_MCUX_0
bool "MCUX Ethernet port 0" bool "MCUX Ethernet port 0"
default n
help help
Include port 0 driver Include port 0 driver

View file

@ -7,7 +7,6 @@
menuconfig ETH_NATIVE_POSIX menuconfig ETH_NATIVE_POSIX
bool "Native Posix Ethernet driver" bool "Native Posix Ethernet driver"
depends on ARCH_POSIX && NET_L2_ETHERNET depends on ARCH_POSIX && NET_L2_ETHERNET
default n
help help
Enable native posix ethernet driver. Note, this driver is run inside Enable native posix ethernet driver. Note, this driver is run inside
a process in your host system. a process in your host system.

View file

@ -8,7 +8,6 @@ menuconfig ETH_SAM_GMAC
bool bool
prompt "Atmel SAM Ethernet driver" prompt "Atmel SAM Ethernet driver"
depends on SOC_FAMILY_SAM depends on SOC_FAMILY_SAM
default n
help help
Enable Atmel SAM MCU Family Ethernet driver. Enable Atmel SAM MCU Family Ethernet driver.

View file

@ -10,7 +10,6 @@ menuconfig ETH_STM32_HAL
bool bool
prompt "STM32 HAL Ethernet driver" prompt "STM32 HAL Ethernet driver"
depends on NET_L2_ETHERNET depends on NET_L2_ETHERNET
default n
select USE_STM32_HAL_ETH select USE_STM32_HAL_ETH
help help
Enable STM32 HAL based Ethernet driver. Enable STM32 HAL based Ethernet driver.

View file

@ -9,7 +9,6 @@
menuconfig SERIAL menuconfig SERIAL
bool bool
prompt "Serial Drivers" prompt "Serial Drivers"
default n
help help
Enable options for serial drivers. Enable options for serial drivers.
@ -19,7 +18,6 @@ comment "Capabilities"
config SERIAL_HAS_DRIVER config SERIAL_HAS_DRIVER
bool bool
default n
help help
This is an option to be enabled by individual serial driver This is an option to be enabled by individual serial driver
to signal that there is a serial driver. This is being used to signal that there is a serial driver. This is being used
@ -27,7 +25,6 @@ config SERIAL_HAS_DRIVER
config SERIAL_SUPPORT_INTERRUPT config SERIAL_SUPPORT_INTERRUPT
bool bool
default n
help help
This is an option to be enabled by individual serial driver This is an option to be enabled by individual serial driver
to signal that the driver and hardware supports interrupts. to signal that the driver and hardware supports interrupts.
@ -35,7 +32,6 @@ config SERIAL_SUPPORT_INTERRUPT
config UART_INTERRUPT_DRIVEN config UART_INTERRUPT_DRIVEN
bool bool
prompt "Enable UART Interrupt support" prompt "Enable UART Interrupt support"
default n
depends on SERIAL_SUPPORT_INTERRUPT depends on SERIAL_SUPPORT_INTERRUPT
help help
This option enables interrupt support for UART allowing console This option enables interrupt support for UART allowing console
@ -43,7 +39,6 @@ config UART_INTERRUPT_DRIVEN
config UART_LINE_CTRL config UART_LINE_CTRL
bool "Enable Serial Line Control API" bool "Enable Serial Line Control API"
default n
help help
This enables the API for apps to control the serial line, This enables the API for apps to control the serial line,
such as baud rate, CTS and RTS. such as baud rate, CTS and RTS.
@ -54,7 +49,6 @@ config UART_LINE_CTRL
config UART_DRV_CMD config UART_DRV_CMD
bool "Enable driver commands API" bool "Enable driver commands API"
default n
help help
This enables the API to send extra commands to drivers. This enables the API to send extra commands to drivers.
This allows drivers to expose hardware specific functions. This allows drivers to expose hardware specific functions.

View file

@ -1,6 +1,5 @@
menuconfig UART_ALTERA_JTAG menuconfig UART_ALTERA_JTAG
bool "Nios II JTAG UART driver" bool "Nios II JTAG UART driver"
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
help help
Enable the Altera JTAG UART driver, built in to many Nios II CPU Enable the Altera JTAG UART driver, built in to many Nios II CPU

View file

@ -1,7 +1,6 @@
menuconfig UART_CC32XX menuconfig UART_CC32XX
depends on SOC_SERIES_CC32XX depends on SOC_SERIES_CC32XX
bool "CC32XX UART driver" bool "CC32XX UART driver"
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_INTERRUPT
depends on SOC_FAMILY_TISIMPLELINK depends on SOC_FAMILY_TISIMPLELINK

View file

@ -8,7 +8,6 @@
menuconfig UART_CMSDK_APB menuconfig UART_CMSDK_APB
bool "ARM CMSDK APB UART driver" bool "ARM CMSDK APB UART driver"
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_INTERRUPT
depends on SOC_FAMILY_ARM depends on SOC_FAMILY_ARM
@ -21,7 +20,6 @@ if UART_CMSDK_APB
config UART_CMSDK_APB_PORT0 config UART_CMSDK_APB_PORT0
bool "Enable driver for UART 0" bool "Enable driver for UART 0"
default n
help help
Build the driver to utilize UART controller Port 0. Build the driver to utilize UART controller Port 0.
@ -29,7 +27,6 @@ config UART_CMSDK_APB_PORT0
config UART_CMSDK_APB_PORT1 config UART_CMSDK_APB_PORT1
bool "Enable driver for UART 1" bool "Enable driver for UART 1"
default n
help help
Build the driver to utilize UART controller Port 1. Build the driver to utilize UART controller Port 1.
@ -37,7 +34,6 @@ config UART_CMSDK_APB_PORT1
config UART_CMSDK_APB_PORT2 config UART_CMSDK_APB_PORT2
bool "Enable driver for UART 2" bool "Enable driver for UART 2"
default n
help help
Build the driver to utilize UART controller Port 2. Build the driver to utilize UART controller Port 2.
@ -45,7 +41,6 @@ config UART_CMSDK_APB_PORT2
config UART_CMSDK_APB_PORT3 config UART_CMSDK_APB_PORT3
bool "Enable driver for UART 3" bool "Enable driver for UART 3"
default n
help help
Build the driver to utilize UART controller Port 3. Build the driver to utilize UART controller Port 3.
@ -53,7 +48,6 @@ config UART_CMSDK_APB_PORT3
config UART_CMSDK_APB_PORT4 config UART_CMSDK_APB_PORT4
bool "Enable driver for UART 4" bool "Enable driver for UART 4"
default n
help help
Build the driver to utilize UART controller Port 4. Build the driver to utilize UART controller Port 4.

View file

@ -1,6 +1,5 @@
menuconfig UART_ESP32 menuconfig UART_ESP32
bool "ESP32 UART driver" bool "ESP32 UART driver"
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
depends on SOC_ESP32 depends on SOC_ESP32
help help

View file

@ -8,7 +8,6 @@
menuconfig UART_FE310 menuconfig UART_FE310
bool "SiFive Freedom E310 serial driver" bool "SiFive Freedom E310 serial driver"
depends on SOC_RISCV32_FE310 depends on SOC_RISCV32_FE310
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_INTERRUPT
help help
@ -18,7 +17,6 @@ menuconfig UART_FE310
menuconfig UART_FE310_PORT_0 menuconfig UART_FE310_PORT_0
bool "Enable FE310 Port 0" bool "Enable FE310 Port 0"
default n
depends on UART_FE310 depends on UART_FE310
help help
This tells the driver to configure the UART port at boot, depending on This tells the driver to configure the UART port at boot, depending on
@ -66,7 +64,6 @@ config UART_FE310_PORT_0_TXCNT_IRQ
menuconfig UART_FE310_PORT_1 menuconfig UART_FE310_PORT_1
bool "Enable FE310 Port 1" bool "Enable FE310 Port 1"
default n
depends on UART_FE310 depends on UART_FE310
help help
This tells the driver to configure the UART port at boot, depending on This tells the driver to configure the UART port at boot, depending on

View file

@ -9,7 +9,6 @@ menuconfig UART_GECKO
bool "Gecko uart driver" bool "Gecko uart driver"
depends on HAS_SILABS_GECKO depends on HAS_SILABS_GECKO
depends on GPIO_GECKO depends on GPIO_GECKO
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_INTERRUPT
help help
@ -19,7 +18,6 @@ if UART_GECKO
menuconfig UART_GECKO_0 menuconfig UART_GECKO_0
bool "UART 0" bool "UART 0"
default n
help help
Enable UART 0. Enable UART 0.
@ -36,7 +34,6 @@ endif # UART_GECKO_0
menuconfig UART_GECKO_1 menuconfig UART_GECKO_1
bool "UART 1" bool "UART 1"
default n
help help
Enable UART 1. Enable UART 1.

View file

@ -8,7 +8,6 @@
menuconfig UART_IMX menuconfig UART_IMX
bool "NXP i.MX7 family processor UART driver" bool "NXP i.MX7 family processor UART driver"
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_INTERRUPT
depends on HAS_IMX_HAL depends on HAS_IMX_HAL
@ -18,7 +17,6 @@ menuconfig UART_IMX
config UART_IMX_UART_1 config UART_IMX_UART_1
bool "Enable NXP i.MX7 UART1 Port" bool "Enable NXP i.MX7 UART1 Port"
default n
depends on UART_IMX depends on UART_IMX
help help
Enable support for UART1 port in the driver. Say y here Enable support for UART1 port in the driver. Say y here
@ -26,7 +24,6 @@ config UART_IMX_UART_1
config UART_IMX_UART_2 config UART_IMX_UART_2
bool "Enable NXP i.MX7 UART2 Port" bool "Enable NXP i.MX7 UART2 Port"
default n
depends on UART_IMX depends on UART_IMX
help help
Enable support for UART2 port in the driver. Say y here Enable support for UART2 port in the driver. Say y here
@ -34,7 +31,6 @@ config UART_IMX_UART_2
config UART_IMX_UART_3 config UART_IMX_UART_3
bool "Enable NXP i.MX7 UART3 Port" bool "Enable NXP i.MX7 UART3 Port"
default n
depends on UART_IMX depends on UART_IMX
help help
Enable support for UART3 port in the driver. Say y here Enable support for UART3 port in the driver. Say y here
@ -42,7 +38,6 @@ config UART_IMX_UART_3
config UART_IMX_UART_4 config UART_IMX_UART_4
bool "Enable NXP i.MX7 UART4 Port" bool "Enable NXP i.MX7 UART4 Port"
default n
depends on UART_IMX depends on UART_IMX
help help
Enable support for UART4 port in the driver. Say y here Enable support for UART4 port in the driver. Say y here
@ -50,7 +45,6 @@ config UART_IMX_UART_4
config UART_IMX_UART_5 config UART_IMX_UART_5
bool "Enable NXP i.MX7 UART5 Port" bool "Enable NXP i.MX7 UART5 Port"
default n
depends on UART_IMX depends on UART_IMX
help help
Enable support for UART5 port in the driver. Say y here Enable support for UART5 port in the driver. Say y here
@ -58,7 +52,6 @@ config UART_IMX_UART_5
config UART_IMX_UART_6 config UART_IMX_UART_6
bool "Enable NXP i.MX7 UART6 Port" bool "Enable NXP i.MX7 UART6 Port"
default n
depends on UART_IMX depends on UART_IMX
help help
Enable support for UART6 port in the driver. Say y here Enable support for UART6 port in the driver. Say y here
@ -66,7 +59,6 @@ config UART_IMX_UART_6
config UART_IMX_UART_7 config UART_IMX_UART_7
bool "Enable NXP i.MX7 UART7 Port" bool "Enable NXP i.MX7 UART7 Port"
default n
depends on UART_IMX depends on UART_IMX
help help
Enable support for UART7 port in the driver. Say y here Enable support for UART7 port in the driver. Say y here

View file

@ -8,7 +8,6 @@
menuconfig UART_MCUX menuconfig UART_MCUX
bool "MCUX uart driver" bool "MCUX uart driver"
depends on HAS_MCUX && CLOCK_CONTROL depends on HAS_MCUX && CLOCK_CONTROL
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_INTERRUPT
help help
@ -18,37 +17,31 @@ if UART_MCUX
menuconfig UART_MCUX_0 menuconfig UART_MCUX_0
bool "UART 0" bool "UART 0"
default n
help help
Enable UART 0. Enable UART 0.
menuconfig UART_MCUX_1 menuconfig UART_MCUX_1
bool "UART 1" bool "UART 1"
default n
help help
Enable UART 1. Enable UART 1.
menuconfig UART_MCUX_2 menuconfig UART_MCUX_2
bool "UART 2" bool "UART 2"
default n
help help
Enable UART 2. Enable UART 2.
menuconfig UART_MCUX_3 menuconfig UART_MCUX_3
bool "UART 3" bool "UART 3"
default n
help help
Enable UART 3. Enable UART 3.
menuconfig UART_MCUX_4 menuconfig UART_MCUX_4
bool "UART 4" bool "UART 4"
default n
help help
Enable UART 4. Enable UART 4.
menuconfig UART_MCUX_5 menuconfig UART_MCUX_5
bool "UART 5" bool "UART 5"
default n
help help
Enable UART 5. Enable UART 5.

View file

@ -7,7 +7,6 @@
menuconfig USART_MCUX_LPC menuconfig USART_MCUX_LPC
bool "MCUX USART driver" bool "MCUX USART driver"
depends on HAS_MCUX depends on HAS_MCUX
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
help help
Enable the MCUX USART driver. Enable the MCUX USART driver.
@ -16,7 +15,6 @@ if USART_MCUX_LPC
menuconfig USART_MCUX_LPC_0 menuconfig USART_MCUX_LPC_0
bool "USART 0" bool "USART 0"
default n
help help
Enable USART 0. Enable USART 0.

View file

@ -8,7 +8,6 @@
menuconfig UART_MCUX_LPSCI menuconfig UART_MCUX_LPSCI
bool "MCUX LPSCI driver" bool "MCUX LPSCI driver"
depends on HAS_MCUX_LPSCI && CLOCK_CONTROL depends on HAS_MCUX_LPSCI && CLOCK_CONTROL
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_INTERRUPT
help help
@ -18,7 +17,6 @@ if UART_MCUX_LPSCI
menuconfig UART_MCUX_LPSCI_0 menuconfig UART_MCUX_LPSCI_0
bool "UART 0" bool "UART 0"
default n
help help
Enable UART 0. Enable UART 0.

View file

@ -8,7 +8,6 @@
menuconfig UART_MCUX_LPUART menuconfig UART_MCUX_LPUART
bool "MCUX LPUART driver" bool "MCUX LPUART driver"
depends on HAS_MCUX_LPUART && CLOCK_CONTROL depends on HAS_MCUX_LPUART && CLOCK_CONTROL
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_INTERRUPT
help help
@ -18,13 +17,11 @@ if UART_MCUX_LPUART
menuconfig UART_MCUX_LPUART_0 menuconfig UART_MCUX_LPUART_0
bool "UART 0" bool "UART 0"
default n
help help
Enable UART 0. Enable UART 0.
menuconfig UART_MCUX_LPUART_1 menuconfig UART_MCUX_LPUART_1
bool "UART 1" bool "UART 1"
default n
help help
Enable UART 1. Enable UART 1.

View file

@ -6,14 +6,12 @@
menuconfig UART_MIV menuconfig UART_MIV
bool "Mi-V serial driver" bool "Mi-V serial driver"
depends on SOC_RISCV32_MIV depends on SOC_RISCV32_MIV
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
help help
This option enables the Mi-V serial driver. This option enables the Mi-V serial driver.
menuconfig UART_MIV_PORT_0 menuconfig UART_MIV_PORT_0
bool "Enable Mi-V Port 0" bool "Enable Mi-V Port 0"
default n
depends on UART_MIV depends on UART_MIV
help help
This tells the driver to configure the UART port at boot, depending on This tells the driver to configure the UART port at boot, depending on

View file

@ -1,7 +1,6 @@
menuconfig UART_MSP432P4XX menuconfig UART_MSP432P4XX
depends on SOC_SERIES_MSP432P4XX depends on SOC_SERIES_MSP432P4XX
bool "MSP432P4XX UART driver" bool "MSP432P4XX UART driver"
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_INTERRUPT
depends on SOC_FAMILY_TISIMPLELINK depends on SOC_FAMILY_TISIMPLELINK

View file

@ -1,6 +1,5 @@
menuconfig UART_NS16550 menuconfig UART_NS16550
bool "NS16550 serial driver" bool "NS16550 serial driver"
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_INTERRUPT
help help
@ -10,7 +9,6 @@ menuconfig UART_NS16550
config UART_NS16550_PCI config UART_NS16550_PCI
bool "Enable PCI Support" bool "Enable PCI Support"
default n
depends on PCI && UART_NS16550 depends on PCI && UART_NS16550
help help
This enables NS16550 to probe for PCI-based serial devices. This enables NS16550 to probe for PCI-based serial devices.
@ -20,7 +18,6 @@ config UART_NS16550_PCI
config UART_NS16550_DLF config UART_NS16550_DLF
bool "Enable Divisor Latch Fraction (DLF) support" bool "Enable Divisor Latch Fraction (DLF) support"
default n
depends on UART_NS16550 depends on UART_NS16550
help help
This enables support for divisor latch fraction (DLF). This enables support for divisor latch fraction (DLF).
@ -30,7 +27,6 @@ config UART_NS16550_DLF
config UART_NS16550_LINE_CTRL config UART_NS16550_LINE_CTRL
bool "Enable Serial Line Control for Apps" bool "Enable Serial Line Control for Apps"
default n
depends on UART_LINE_CTRL && UART_NS16550 depends on UART_LINE_CTRL && UART_NS16550
help help
This enables the API for apps to control the serial line, This enables the API for apps to control the serial line,
@ -40,7 +36,6 @@ config UART_NS16550_LINE_CTRL
config UART_NS16550_DRV_CMD config UART_NS16550_DRV_CMD
bool "Enable Driver Commands" bool "Enable Driver Commands"
default n
depends on UART_DRV_CMD && UART_NS16550 depends on UART_DRV_CMD && UART_NS16550
help help
This enables the API for apps to send commands to driver. This enables the API for apps to send commands to driver.
@ -49,7 +44,6 @@ config UART_NS16550_DRV_CMD
config UART_NS16750 config UART_NS16750
bool "Enable 64-bytes FIFO for UART 16750" bool "Enable 64-bytes FIFO for UART 16750"
default n
depends on UART_NS16550 depends on UART_NS16550
help help
This enables support for 64-bytes FIFO if UART controller is 16750. This enables support for 64-bytes FIFO if UART controller is 16750.
@ -58,7 +52,6 @@ config UART_NS16750
menuconfig UART_NS16550_PORT_0 menuconfig UART_NS16550_PORT_0
bool "Enable NS16550 Port 0" bool "Enable NS16550 Port 0"
default n
depends on UART_NS16550 depends on UART_NS16550
help help
This tells the driver to configure the UART port at boot, depending on This tells the driver to configure the UART port at boot, depending on
@ -108,7 +101,6 @@ config UART_NS16550_PORT_0_DLF
config UART_NS16550_PORT_0_PCI config UART_NS16550_PORT_0_PCI
bool "Port 0 is PCI-based" bool "Port 0 is PCI-based"
default n
depends on UART_NS16550_PCI && UART_NS16550_PORT_0 depends on UART_NS16550_PCI && UART_NS16550_PORT_0
help help
Obtain port information from PCI. Obtain port information from PCI.
@ -117,7 +109,6 @@ config UART_NS16550_PORT_0_PCI
menuconfig UART_NS16550_PORT_1 menuconfig UART_NS16550_PORT_1
bool "Enable NS16550 Port 1" bool "Enable NS16550 Port 1"
default n
depends on UART_NS16550 depends on UART_NS16550
help help
This tells the driver to configure the UART port at boot, depending on This tells the driver to configure the UART port at boot, depending on
@ -169,7 +160,6 @@ config UART_NS16550_PORT_1_DLF
menuconfig UART_NS16550_PORT_2 menuconfig UART_NS16550_PORT_2
bool "Enable NS16550 Port 2" bool "Enable NS16550 Port 2"
default n
depends on UART_NS16550 depends on UART_NS16550
help help
This tells the driver to configure the UART port at boot, depending on This tells the driver to configure the UART port at boot, depending on

View file

@ -1,6 +1,5 @@
config UART_NSIM config UART_NSIM
bool "UART driver for MetaWare nSim" bool "UART driver for MetaWare nSim"
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
depends on SERIAL depends on SERIAL
help help

View file

@ -1,7 +1,6 @@
menuconfig UART_QMSI menuconfig UART_QMSI
depends on QMSI depends on QMSI
bool "QMSI UART driver" bool "QMSI UART driver"
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_INTERRUPT
help help
@ -13,7 +12,6 @@ menuconfig UART_QMSI
config UART_QMSI_0 config UART_QMSI_0
depends on UART_QMSI depends on UART_QMSI
bool "Enable UART 0 controller" bool "Enable UART 0 controller"
default n
config UART_QMSI_0_HW_FC config UART_QMSI_0_HW_FC
depends on UART_QMSI_0 depends on UART_QMSI_0
@ -23,7 +21,6 @@ config UART_QMSI_0_HW_FC
config UART_QMSI_1 config UART_QMSI_1
depends on UART_QMSI depends on UART_QMSI
bool "Enable UART 1 controller" bool "Enable UART 1 controller"
default n
config UART_QMSI_1_HW_FC config UART_QMSI_1_HW_FC
depends on UART_QMSI_1 depends on UART_QMSI_1

View file

@ -8,7 +8,6 @@
menuconfig UART_RISCV_QEMU menuconfig UART_RISCV_QEMU
bool "riscv-qemu UART driver" bool "riscv-qemu UART driver"
depends on SOC_RISCV32_QEMU depends on SOC_RISCV32_QEMU
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
help help
Enable the riscv-qemu UART driver. Enable the riscv-qemu UART driver.

View file

@ -8,6 +8,5 @@ menuconfig UART_SAM0
depends on SOC_FAMILY_SAM0 depends on SOC_FAMILY_SAM0
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_INTERRUPT
default n
help help
This option enables the SERCOMx USART driver for Atmel SAM0 MCUs. This option enables the SERCOMx USART driver for Atmel SAM0 MCUs.

View file

@ -1,6 +1,5 @@
menuconfig UART_STELLARIS menuconfig UART_STELLARIS
bool "Stellaris serial driver" bool "Stellaris serial driver"
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_INTERRUPT
help help
@ -12,7 +11,6 @@ menuconfig UART_STELLARIS
menuconfig UART_STELLARIS_PORT_0 menuconfig UART_STELLARIS_PORT_0
bool "Enable Stellaris UART Port 0" bool "Enable Stellaris UART Port 0"
default n
depends on UART_STELLARIS depends on UART_STELLARIS
help help
This tells the driver to configure the UART port at boot, depending on This tells the driver to configure the UART port at boot, depending on
@ -22,7 +20,6 @@ menuconfig UART_STELLARIS_PORT_0
menuconfig UART_STELLARIS_PORT_1 menuconfig UART_STELLARIS_PORT_1
bool "Enable Stellaris UART Port 1" bool "Enable Stellaris UART Port 1"
default n
depends on UART_STELLARIS depends on UART_STELLARIS
help help
This tells the driver to configure the UART port at boot, depending on This tells the driver to configure the UART port at boot, depending on
@ -32,7 +29,6 @@ menuconfig UART_STELLARIS_PORT_1
menuconfig UART_STELLARIS_PORT_2 menuconfig UART_STELLARIS_PORT_2
bool "Enable Stellaris UART Port 2" bool "Enable Stellaris UART Port 2"
default n
depends on UART_STELLARIS depends on UART_STELLARIS
help help
This tells the driver to configure the UART port at boot, depending on This tells the driver to configure the UART port at boot, depending on

View file

@ -7,7 +7,6 @@
menuconfig UART_STM32 menuconfig UART_STM32
bool "STM32 MCU serial driver" bool "STM32 MCU serial driver"
default n
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_INTERRUPT
depends on SOC_FAMILY_STM32 depends on SOC_FAMILY_STM32
@ -22,7 +21,6 @@ if UART_STM32
config UART_STM32_PORT_1 config UART_STM32_PORT_1
bool "Enable STM32 USART1 Port" bool "Enable STM32 USART1 Port"
default n
depends on UART_STM32 depends on UART_STM32
help help
Enable support for USART1 port in the driver. Enable support for USART1 port in the driver.
@ -32,7 +30,6 @@ config UART_STM32_PORT_1
config UART_STM32_PORT_2 config UART_STM32_PORT_2
bool "Enable STM32 USART2 Port" bool "Enable STM32 USART2 Port"
default n
depends on UART_STM32 depends on UART_STM32
help help
Enable support for USART2 port in the driver. Enable support for USART2 port in the driver.
@ -42,7 +39,6 @@ config UART_STM32_PORT_2
config UART_STM32_PORT_3 config UART_STM32_PORT_3
bool "Enable STM32 USART3 Port" bool "Enable STM32 USART3 Port"
default n
depends on UART_STM32 depends on UART_STM32
help help
Enable support for USART3 port in the driver. Enable support for USART3 port in the driver.
@ -52,7 +48,6 @@ config UART_STM32_PORT_3
config UART_STM32_PORT_4 config UART_STM32_PORT_4
bool "Enable STM32 U(S)ART4 Port" bool "Enable STM32 U(S)ART4 Port"
default n
depends on UART_STM32 depends on UART_STM32
help help
Enable support for U(S)ART4 port in the driver. Enable support for U(S)ART4 port in the driver.
@ -62,7 +57,6 @@ config UART_STM32_PORT_4
config UART_STM32_PORT_5 config UART_STM32_PORT_5
bool "Enable STM32 U(S)ART5 Port" bool "Enable STM32 U(S)ART5 Port"
default n
depends on UART_STM32 depends on UART_STM32
help help
Enable support for U(S)ART5 port in the driver. Enable support for U(S)ART5 port in the driver.
@ -72,7 +66,6 @@ config UART_STM32_PORT_5
config UART_STM32_PORT_6 config UART_STM32_PORT_6
bool "Enable STM32 USART6 Port" bool "Enable STM32 USART6 Port"
default n
depends on UART_STM32 depends on UART_STM32
help help
Enable support for USART6 port in the driver. Enable support for USART6 port in the driver.
@ -82,7 +75,6 @@ config UART_STM32_PORT_6
config UART_STM32_PORT_7 config UART_STM32_PORT_7
bool "Enable STM32 U(S)ART7 Port" bool "Enable STM32 U(S)ART7 Port"
default n
depends on UART_STM32 depends on UART_STM32
help help
Enable support for U(S)ART7 port in the driver. Enable support for U(S)ART7 port in the driver.
@ -92,7 +84,6 @@ config UART_STM32_PORT_7
config UART_STM32_PORT_8 config UART_STM32_PORT_8
bool "Enable STM32 U(S)ART8 Port" bool "Enable STM32 U(S)ART8 Port"
default n
depends on UART_STM32 depends on UART_STM32
help help
Enable support for U(S)ART8 port in the driver. Enable support for U(S)ART8 port in the driver.
@ -102,7 +93,6 @@ config UART_STM32_PORT_8
config UART_STM32_PORT_9 config UART_STM32_PORT_9
bool "Enable STM32 UART9 Port" bool "Enable STM32 UART9 Port"
default n
depends on UART_STM32 depends on UART_STM32
help help
Enable support for UART9 port in the driver. Enable support for UART9 port in the driver.
@ -112,7 +102,6 @@ config UART_STM32_PORT_9
config UART_STM32_PORT_10 config UART_STM32_PORT_10
bool "Enable STM32 UART10 Port" bool "Enable STM32 UART10 Port"
default n
depends on UART_STM32 depends on UART_STM32
help help
Enable support for UART10 port in the driver. Enable support for UART10 port in the driver.
@ -124,7 +113,6 @@ if SOC_SERIES_STM32L0X || SOC_SERIES_STM32L4X
config UART_STM32_LPUART_1 config UART_STM32_LPUART_1
bool "Enable STM32 LPUART1 Port" bool "Enable STM32 LPUART1 Port"
default n
depends on UART_STM32 depends on UART_STM32
help help
Enable support for LPUART1 port in the driver. Enable support for LPUART1 port in the driver.

View file

@ -10,7 +10,6 @@ menuconfig UART_SAM
depends on SOC_FAMILY_SAM depends on SOC_FAMILY_SAM
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_INTERRUPT
default n
help help
This option enables the UARTx driver for Atmel SAM MCUs. This option enables the UARTx driver for Atmel SAM MCUs.
@ -19,7 +18,6 @@ menuconfig UART_SAM
config UART_SAM_PORT_0 config UART_SAM_PORT_0
bool "Enable UART0" bool "Enable UART0"
depends on UART_SAM depends on UART_SAM
default n
help help
Enable UART0 at boot. Enable UART0 at boot.
@ -28,7 +26,6 @@ config UART_SAM_PORT_0
config UART_SAM_PORT_1 config UART_SAM_PORT_1
bool "Enable UART1" bool "Enable UART1"
depends on UART_SAM depends on UART_SAM
default n
help help
Enable UART1 at boot. Enable UART1 at boot.
@ -55,7 +52,6 @@ endif # UART_SAM_PORT_1
config UART_SAM_PORT_2 config UART_SAM_PORT_2
bool "Enable UART2" bool "Enable UART2"
depends on UART_SAM depends on UART_SAM
default n
help help
Enable UART2 at boot Enable UART2 at boot
@ -64,7 +60,6 @@ config UART_SAM_PORT_2
config UART_SAM_PORT_3 config UART_SAM_PORT_3
bool "Enable UART3" bool "Enable UART3"
depends on UART_SAM depends on UART_SAM
default n
help help
Enable UART3 at boot Enable UART3 at boot
@ -88,7 +83,6 @@ endif # UART_SAM_PORT_3
config UART_SAM_PORT_4 config UART_SAM_PORT_4
bool "Enable UART4" bool "Enable UART4"
depends on UART_SAM depends on UART_SAM
default n
help help
Enable UART4 at boot Enable UART4 at boot

View file

@ -9,7 +9,6 @@ menuconfig USART_SAM
depends on SOC_FAMILY_SAM depends on SOC_FAMILY_SAM
select SERIAL_HAS_DRIVER select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT select SERIAL_SUPPORT_INTERRUPT
default n
help help
This option enables the USARTx driver for Atmel SAM MCUs. This option enables the USARTx driver for Atmel SAM MCUs.
@ -18,7 +17,6 @@ menuconfig USART_SAM
config USART_SAM_PORT_0 config USART_SAM_PORT_0
bool "Enable USART0" bool "Enable USART0"
depends on USART_SAM depends on USART_SAM
default n
help help
Enable USART0 at boot Enable USART0 at boot
@ -27,7 +25,6 @@ config USART_SAM_PORT_0
config USART_SAM_PORT_1 config USART_SAM_PORT_1
bool "Enable USART1" bool "Enable USART1"
depends on USART_SAM depends on USART_SAM
default n
help help
Enable USART1 at boot Enable USART1 at boot
@ -36,6 +33,5 @@ config USART_SAM_PORT_1
config USART_SAM_PORT_2 config USART_SAM_PORT_2
bool "Enable USART2" bool "Enable USART2"
depends on USART_SAM depends on USART_SAM
default n
help help
Enable USART2 at boot Enable USART2 at boot