mbox series

[0/2] exec/ioport: Factor portio_list_register[flush_coalesced]() out

Message ID 20230207234615.77300-1-philmd@linaro.org
Headers show
Series exec/ioport: Factor portio_list_register[flush_coalesced]() out | expand

Message

Philippe Mathieu-Daudé Feb. 7, 2023, 11:46 p.m. UTC
Preliminary to further ISA API cleanups...

Convert this sequence:

- portio_list_init()
- portio_list_set_flush_coalesced()
- portio_list_add()

to portio_list_register_flush_coalesced(),
and the non-coalescing equivalent:

- portio_list_init()
- portio_list_add()

to portio_list_register().

Philippe Mathieu-Daudé (2):
  exec/ioport: Factor portio_list_register_flush_coalesced() out
  exec/ioport: Factor portio_list_register() out

 hw/audio/adlib.c        |  4 ++--
 hw/display/qxl.c        |  7 +++---
 hw/display/vga.c        |  9 ++++----
 hw/dma/i82374.c         |  7 +++---
 hw/isa/isa-bus.c        |  6 ++----
 hw/watchdog/wdt_ib700.c |  4 ++--
 include/exec/ioport.h   | 15 +++++++------
 softmmu/ioport.c        | 48 ++++++++++++++++++++++++++++++-----------
 8 files changed, 60 insertions(+), 40 deletions(-)