Skip to content

Commit

Permalink
hw/pci-host/sh_pcic: Replace magic value by proper definition
Browse files Browse the repository at this point in the history
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Yoshinori Sato <ysato@users.sourceforge.jp>
Message-Id: <20231012041237.22281-4-philmd@linaro.org>
  • Loading branch information
philmd committed Oct 19, 2023
1 parent 6db7f62 commit f158d3b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions hw/pci-host/sh_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ struct SHPCIState {
PCIHostState parent_obj;

PCIDevice *dev;
qemu_irq irq[4];
qemu_irq irq[PCI_NUM_PINS];
MemoryRegion memconfig_p4;
MemoryRegion memconfig_a7;
MemoryRegion isa;
Expand Down Expand Up @@ -131,7 +131,8 @@ static void sh_pcic_host_realize(DeviceState *dev, Error **errp)
s->irq,
get_system_memory(),
get_system_io(),
PCI_DEVFN(0, 0), 4, TYPE_PCI_BUS);
PCI_DEVFN(0, 0), PCI_NUM_PINS,
TYPE_PCI_BUS);
memory_region_init_io(&s->memconfig_p4, OBJECT(s), &sh_pci_reg_ops, s,
"sh_pci", 0x224);
memory_region_init_alias(&s->memconfig_a7, OBJECT(s), "sh_pci.2",
Expand Down

0 comments on commit f158d3b

Please sign in to comment.