diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-06-07 16:04:56 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-06-19 12:40:49 +0200 |
commit | fd32d8233989b59098ac0c4bdb934f4c4888883b (patch) | |
tree | c3b0d625ba5b6b72550ff33dd679a81ec3c44bea /include/hw | |
parent | 9d5c1da9c04d59871c69cf18e39051e6d63da78e (diff) | |
download | qemu-fd32d8233989b59098ac0c4bdb934f4c4888883b.zip qemu-fd32d8233989b59098ac0c4bdb934f4c4888883b.tar.gz qemu-fd32d8233989b59098ac0c4bdb934f4c4888883b.tar.bz2 |
hw/ppc: Avoid using Monitor in xive2_end_queue_pic_print_info()
Replace Monitor API by HumanReadableText one.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Harsh Prateek Bora <harshpb@linux.ibm.com>
Message-Id: <20240610062105.49848-20-philmd@linaro.org>
Diffstat (limited to 'include/hw')
-rw-r--r-- | include/hw/ppc/xive2_regs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/ppc/xive2_regs.h b/include/hw/ppc/xive2_regs.h index 37f572e..4d32703 100644 --- a/include/hw/ppc/xive2_regs.h +++ b/include/hw/ppc/xive2_regs.h @@ -132,7 +132,7 @@ static inline uint64_t xive2_end_qaddr(Xive2End *end) void xive2_end_pic_print_info(Xive2End *end, uint32_t end_idx, Monitor *mon); void xive2_end_queue_pic_print_info(Xive2End *end, uint32_t width, - Monitor *mon); + GString *buf); void xive2_end_eas_pic_print_info(Xive2End *end, uint32_t end_idx, GString *buf); |