diff options
| author | Tom Rini <[email protected]> | 2025-09-25 14:51:32 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-10-08 16:12:50 -0600 |
| commit | 9d42a06019178ccd0fff37864ff09c2335c68308 (patch) | |
| tree | b998e0973e219148ceb07dac3ab29f815a401a0e /cmd | |
| parent | 583a45c33f3040a2e936c2d4012fe1b3a6edb537 (diff) | |
cmd: Update dependencies on CMD_IRQ
For CMD_IRQ to function, we need enable/disable_interrupt functions as
well as do_irqinfo functions to be defined. Only NIOS2, PowerPC and X86
implement the latter, so correct dependencies to be opt-in not out-out
here.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index bb11fd07cdf..eb615552a00 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -3009,7 +3009,7 @@ config CMD_EVENT config CMD_IRQ bool "irq - Show information about interrupts" - depends on !ARM && !MIPS && !RISCV && !SH + depends on NIOS2 || PPC || X86 help This enables two commands: |
