diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-01-05 18:38:26 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2023-01-16 18:40:43 +0100 |
commit | 09aa7be196ebd94d68dc06c62fdcea040e2bd196 (patch) | |
tree | 7e64a86a3979120c269d5a69ab41e1a541150aad /hw/i386 | |
parent | 6eb71c6a1e917f3a6ece71593ff44de6eae8bba9 (diff) |
hw/i386/pc: Remove unused 'owner' argument from pc_pci_as_mapping_init
This argument was added 9 years ago in commit 83d08f2673
("pc: map PCI address space as catchall region for not mapped
addresses") and has never been used since, so remove it.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Bernhard Beschow <shentey@gmail.com>
Message-Id: <20230105173826.56748-1-philmd@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/i386')
-rw-r--r-- | hw/i386/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/i386/pc.c b/hw/i386/pc.c index d489ecc0d1..6e592bd969 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -782,7 +782,7 @@ void pc_guest_info_init(PCMachineState *pcms) } /* setup pci memory address space mapping into system address space */ -void pc_pci_as_mapping_init(Object *owner, MemoryRegion *system_memory, +void pc_pci_as_mapping_init(MemoryRegion *system_memory, MemoryRegion *pci_address_space) { /* Set to lower priority than RAM */ |