diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2010-07-13 13:01:39 +0900 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2010-07-22 12:21:30 +0300 |
commit | 783753fd53fe513d37fbbfe6694c0c1ab9701fd1 (patch) | |
tree | 2f99bce7b3271affb0928cb4d85ccb01f6925fda /hw/apb_pci.c | |
parent | cfb0a50a06825a0bee349cae3fa94f96242e83a5 (diff) |
pci/bridge: split out pci bridge code into pci_bridge.c from pci.c
Move pci bridge related code into pci_bridge.c from pci.c
for further enhancement. pci.c is big enough now, so split it out.
No code change but exporting some accesser functions.
In fact, few pci bridge functions stays in pci.c.
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/apb_pci.c')
-rw-r--r-- | hw/apb_pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/apb_pci.c b/hw/apb_pci.c index 0ecac55792..88ee4a9d92 100644 --- a/hw/apb_pci.c +++ b/hw/apb_pci.c @@ -29,6 +29,7 @@ #include "sysbus.h" #include "pci.h" #include "pci_host.h" +#include "pci_bridge.h" #include "rwhandler.h" #include "apb_pci.h" #include "sysemu.h" |