Depending on `!SERIAL_SUPPORT_INTERRUPT` to enable the driver does not make any sense, as this is a symbol selected by drivers to signify that they support interrupts. Simply not selecting this symbol is enough to convey the desired intention. This fixes Kconfig problems when the driver is compiled together with a dummy serial driver which does select `SERIAL_SUPPORT_INTERRUPT`. Signed-off-by: Jordan Yates <jordan.yates@data61.csiro.au>
12 lines
311 B
Plaintext
12 lines
311 B
Plaintext
# LiteX UART (LiteUART) configuration option
|
|
|
|
# Copyright (c) 2018 - 2019 Antmicro <www.antmicro.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config UART_LITEUART
|
|
bool "LiteUART serial driver"
|
|
depends on SOC_RISCV32_LITEX_VEXRISCV
|
|
select SERIAL_HAS_DRIVER
|
|
help
|
|
This option enables LiteUART serial driver.
|