diff options
author | Kefeng Wang <wangkefeng.wang@huawei.com> | 2020-04-17 20:12:21 +0800 |
---|---|---|
committer | Palmer Dabbelt <palmerdabbelt@google.com> | 2020-04-21 16:15:04 -0700 |
commit | f9d89c944a046bd18795875b5775e11a1e124076 (patch) | |
tree | 18208c5d65291b9305aba79db07d88236438b78d /drivers/tty/hvc/Kconfig | |
parent | 72df61d9d66e5bbe7e2c8b5accc240f66276147f (diff) | |
download | linux-stable-f9d89c944a046bd18795875b5775e11a1e124076.tar.gz linux-stable-f9d89c944a046bd18795875b5775e11a1e124076.tar.bz2 linux-stable-f9d89c944a046bd18795875b5775e11a1e124076.zip |
tty: riscv: Using RISCV_SBI_V01 instead of RISCV_SBI
As shown in SBI v0.2, the legacy console SBI functions (sbi_console_getchar()
and sbi_console_putchar()) are expected to be deprecated; they have no replacement.
Let's HVC_RISCV_SBI and SERIAL_EARLYCON_RISCV_SBI depends on RISCV_SBI_V01.
Fixes: efca13989250 ("RISC-V: Introduce a new config for SBI v0.1")
Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
Diffstat (limited to 'drivers/tty/hvc/Kconfig')
-rw-r--r-- | drivers/tty/hvc/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/hvc/Kconfig b/drivers/tty/hvc/Kconfig index 31b7e1b03749..d1b27b0522a3 100644 --- a/drivers/tty/hvc/Kconfig +++ b/drivers/tty/hvc/Kconfig @@ -88,7 +88,7 @@ config HVC_DCC config HVC_RISCV_SBI bool "RISC-V SBI console support" - depends on RISCV_SBI + depends on RISCV_SBI_V01 select HVC_DRIVER help This enables support for console output via RISC-V SBI calls, which |