diff options
author | Alexander Graf <agraf@suse.de> | 2012-12-12 13:53:53 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2012-12-14 13:12:57 +0100 |
commit | 492ec48dc2d99ca13b24d554e1970af7e2581e23 (patch) | |
tree | 340f69c98ae3c140dd64b519a9a04bb3d28c4583 /hw/ppc/e500.h | |
parent | 347dd79dccf41a679115213da673dfd06c4c8cc8 (diff) |
PPC: E500: Move PCI slot information into params
We have a params struct that allows us to expose differences between
e500 machine models. Include PCI slot information there, so we can have
different machines with different PCI slot topology.
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'hw/ppc/e500.h')
-rw-r--r-- | hw/ppc/e500.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/ppc/e500.h b/hw/ppc/e500.h index 7ae87f4e21..f5ff27385b 100644 --- a/hw/ppc/e500.h +++ b/hw/ppc/e500.h @@ -9,6 +9,8 @@ typedef struct PPCE500Params { const char *kernel_cmdline; const char *initrd_filename; const char *cpu_model; + int pci_first_slot; + int pci_nr_slots; /* e500-specific params */ |