[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v2 6/6] intc: make HMP 'info irq' and 'info pic' com
From: |
Hervé Poussineau |
Subject: |
[Qemu-devel] [PATCH v2 6/6] intc: make HMP 'info irq' and 'info pic' commands available on all targets |
Date: |
Mon, 26 Sep 2016 22:23:28 +0200 |
Signed-off-by: Hervé Poussineau <address@hidden>
---
hmp-commands-info.hx | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/hmp-commands-info.hx b/hmp-commands-info.hx
index 6a7c476..55d50c4 100644
--- a/hmp-commands-info.hx
+++ b/hmp-commands-info.hx
@@ -172,8 +172,6 @@ STEXI
Show the command line history.
ETEXI
-#if defined(TARGET_I386) || defined(TARGET_PPC) || defined(TARGET_MIPS) || \
- defined(TARGET_LM32) || (defined(TARGET_SPARC) && !defined(TARGET_SPARC64))
{
.name = "irq",
.args_type = "",
@@ -192,10 +190,9 @@ ETEXI
.name = "pic",
.args_type = "",
.params = "",
- .help = "show i8259 (PIC) state",
+ .help = "show PIC state",
.cmd = hmp_info_pic,
},
-#endif
STEXI
@item info pic
--
2.1.4
[Qemu-devel] [PATCH v2 5/6] intc: make HMP 'info irq' and 'info pic' commands use InterruptStatsProvider interface, Hervé Poussineau, 2016/09/26
[Qemu-devel] [PATCH v2 1/6] intc: add an interface to gather statistics/informations on interrupt controllers, Hervé Poussineau, 2016/09/26
[Qemu-devel] [PATCH v2 6/6] intc: make HMP 'info irq' and 'info pic' commands available on all targets,
Hervé Poussineau <=
[Qemu-devel] [PATCH v2 3/6] intc/slavio_intctl: implement InterruptStatsProvider interface, Hervé Poussineau, 2016/09/26
Re: [Qemu-devel] [PATCH v2 0/6] intc: change 'info irq' and 'info pic' to be target-agnostic, David Gibson, 2016/09/27