diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2012-12-12 23:05:42 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2012-12-17 13:02:27 +0200 |
commit | c759b24fae08c6c333df03e1db48e13b7f5eda30 (patch) | |
tree | 70016ba59bf458a82a0bd001f0736588f995a60c /hw/pci/pcie.c | |
parent | a2cb15b0ddfa05f81a42d7b65dd0c7c50e420c33 (diff) | |
download | hqemu-c759b24fae08c6c333df03e1db48e13b7f5eda30.zip hqemu-c759b24fae08c6c333df03e1db48e13b7f5eda30.tar.gz |
pci: fix path for local includes
Include dependencies from pci core using the correct path.
This is required now that it's in the separate directory.
Need to check whether they can be minimized, for now,
keep the code as is.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/pci/pcie.c')
-rw-r--r-- | hw/pci/pcie.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/hw/pci/pcie.c b/hw/pci/pcie.c index 7c92f19..b98adbf 100644 --- a/hw/pci/pcie.c +++ b/hw/pci/pcie.c @@ -19,12 +19,12 @@ */ #include "qemu-common.h" -#include "pci_bridge.h" -#include "pcie.h" -#include "msix.h" -#include "msi.h" -#include "pci_internals.h" -#include "pcie_regs.h" +#include "hw/pci/pci_bridge.h" +#include "hw/pci/pcie.h" +#include "hw/pci/msix.h" +#include "hw/pci/msi.h" +#include "hw/pci/pci_internals.h" +#include "hw/pci/pcie_regs.h" #include "range.h" //#define DEBUG_PCIE |