From c5a7e5b3dd9de415b13599491d3239be2ab47c18 Mon Sep 17 00:00:00 2001 From: Pragnesh Patel Date: Mon, 24 Aug 2020 20:38:55 +0530 Subject: [PATCH] cmd: irq: disable CMD_IRQ for riscv arch For RISC-V arch, no need for CMD_IRQ so disable the same. Signed-off-by: Pragnesh Patel Reviewed-by: Heinrich Schuchardt Reviewed-by: Rick Chen Reviewed-by: Bin Meng --- cmd/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/Kconfig b/cmd/Kconfig index 0c984d7..30c358d 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -2235,7 +2235,7 @@ config CMD_DIAG config CMD_IRQ bool "irq - Show information about interrupts" - depends on !ARM && !MIPS && !SH + depends on !ARM && !MIPS && !RISCV && !SH help This enables two commands: -- 2.7.4