diff options
author | Michal Simek <michal.simek@xilinx.com> | 2020-07-10 12:41:13 +0200 |
---|---|---|
committer | Andes <uboot@andestech.com> | 2020-07-24 14:56:04 +0800 |
commit | 27b4a4abe60ef4f42e45cb33075ca37369831588 (patch) | |
tree | b60f654c38b5d80dcc541d2fd66fd00eb10e499d | |
parent | a0cc38ab44b0fa8af65632cbea1b13630195f03d (diff) | |
download | u-boot-27b4a4abe60ef4f42e45cb33075ca37369831588.zip u-boot-27b4a4abe60ef4f42e45cb33075ca37369831588.tar.gz u-boot-27b4a4abe60ef4f42e45cb33075ca37369831588.tar.bz2 |
serial: Fix SIFIVE debug serial dependency
The commit 4cc24aeaf420 ("serial: Add missing Kconfig dependencies for
debug consoles") has added incorrect dependency for SIFIVE debug uart which
should depend on SIFIVE driver instead of PL01x.
Fixes: 4cc24aeaf420 ("serial: Add missing Kconfig dependencies for debug consoles")
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bin.meng@windriver.com>
Reviewed-by: Leo Liang <ycliang@andestech.com>
Reviewed-by: Sean Anderson <seanga2@gmail.com>
-rw-r--r-- | drivers/serial/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index 14df2e9..e146ffc 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig @@ -359,7 +359,7 @@ config DEBUG_UART_SANDBOX config DEBUG_UART_SIFIVE bool "SiFive UART" - depends on PL01X_SERIAL + depends on SIFIVE_SERIAL help Select this to enable a debug UART using the serial_sifive driver. You will need to provide parameters to make this work. The driver will |