diff options
| author | Satheesh Rajendran | 2019-05-09 10:07:50 +0200 |
|---|---|---|
| committer | David Gibson | 2019-05-29 03:39:45 +0200 |
| commit | f81d69fcea571af19de01377d2b474a675f573d6 (patch) | |
| tree | afa9df5f630ca1b0ee4bf1cf16a2359b7929e06e /hw/intc | |
| parent | spapr/xive: print out the EQ page address in the monitor (diff) | |
| download | qemu-f81d69fcea571af19de01377d2b474a675f573d6.tar.gz qemu-f81d69fcea571af19de01377d2b474a675f573d6.tar.xz qemu-f81d69fcea571af19de01377d2b474a675f573d6.zip | |
Fix typo on "info pic" monitor cmd output for xive
Instead of LISN i.e "Logical Interrupt Source Number" as per
Xive PAPR document "info pic" prints as LSIN, let's fix it.
Signed-off-by: Satheesh Rajendran <sathnaga@linux.vnet.ibm.com>
Message-Id: <20190509080750.21999-1-sathnaga@linux.vnet.ibm.com>
Reviewed-by: Greg Kurz <groug@kaod.org>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/intc')
| -rw-r--r-- | hw/intc/spapr_xive.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/intc/spapr_xive.c b/hw/intc/spapr_xive.c index 58cc6e2b50..62e13ac353 100644 --- a/hw/intc/spapr_xive.c +++ b/hw/intc/spapr_xive.c @@ -141,7 +141,7 @@ void spapr_xive_pic_print_info(SpaprXive *xive, Monitor *mon) XiveSource *xsrc = &xive->source; int i; - monitor_printf(mon, " LSIN PQ EISN CPU/PRIO EQ\n"); + monitor_printf(mon, " LISN PQ EISN CPU/PRIO EQ\n"); for (i = 0; i < xive->nr_irqs; i++) { uint8_t pq = xive_source_esb_get(xsrc, i); |
