summaryrefslogtreecommitdiffstats
path: root/include/hw/pci-host/q35.h
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé2020-12-02 14:20:38 +0100
committerLaurent Vivier2020-12-13 17:07:05 +0100
commitf6a3c86ebd39aaedf1ebf89629ec91b5d44b670d (patch)
tree42943407aac4211bba2b77122f460edc30a0794d /include/hw/pci-host/q35.h
parenthw/xen: Don't use '#' flag of printf format (diff)
downloadqemu-f6a3c86ebd39aaedf1ebf89629ec91b5d44b670d.tar.gz
qemu-f6a3c86ebd39aaedf1ebf89629ec91b5d44b670d.tar.xz
qemu-f6a3c86ebd39aaedf1ebf89629ec91b5d44b670d.zip
hw/pci-host/pam: Replace magic number by PAM_REGIONS_COUNT definition
While this change helps triskaidekaphobic developers, it is a good practice to avoid magic values and using constant definitions instead. Introduce the PAM_REGIONS_COUNT and use it. No logical change. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Julia Suvorova <jusual@redhat.com> Message-Id: <20201202132038.1276404-1-philmd@redhat.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'include/hw/pci-host/q35.h')
-rw-r--r--include/hw/pci-host/q35.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/pci-host/q35.h b/include/hw/pci-host/q35.h
index bbb9581765..ab989698ef 100644
--- a/include/hw/pci-host/q35.h
+++ b/include/hw/pci-host/q35.h
@@ -44,7 +44,7 @@ struct MCHPCIState {
MemoryRegion *pci_address_space;
MemoryRegion *system_memory;
MemoryRegion *address_space_io;
- PAMMemoryRegion pam_regions[13];
+ PAMMemoryRegion pam_regions[PAM_REGIONS_COUNT];
MemoryRegion smram_region, open_high_smram;
MemoryRegion smram, low_smram, high_smram;
MemoryRegion tseg_blackhole, tseg_window;