summary refs log tree commit diff stats
path: root/python/qemu/utils/py.typed
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2023-10-18 07:50:31 +0200
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2023-10-19 23:13:28 +0200
commita540087f608f1996e3581ddb39456be23db577a8 (patch)
treeffda5c32342cd973248797403d5933f74df24048 /python/qemu/utils/py.typed
parent544f07f6394ab940021f3b512d8bb1b34380dcd6 (diff)
downloadfocaccia-qemu-a540087f608f1996e3581ddb39456be23db577a8.tar.gz
focaccia-qemu-a540087f608f1996e3581ddb39456be23db577a8.zip
hw/i386/intel_iommu: Do not use SysBus API to map local MMIO region
There is no point in exposing an internal MMIO region via
SysBus and directly mapping it in the very same device.

Just map it without using the SysBus API.

Transformation done using the following coccinelle script:

  @@
  expression sbdev;
  expression index;
  expression addr;
  expression subregion;
  @@
  -    sysbus_init_mmio(sbdev, subregion);
       ... when != sbdev
  -    sysbus_mmio_map(sbdev, index, addr);
  +    memory_region_add_subregion(get_system_memory(), addr, subregion);

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20231018141151.87466-3-philmd@linaro.org>
Diffstat (limited to 'python/qemu/utils/py.typed')
0 files changed, 0 insertions, 0 deletions