aboutsummaryrefslogtreecommitdiff
path: root/hw/pci/slotid_cap.c
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@redhat.com>2012-12-12 23:05:42 +0200
committerMichael S. Tsirkin <mst@redhat.com>2012-12-17 13:02:27 +0200
commitc759b24fae08c6c333df03e1db48e13b7f5eda30 (patch)
tree70016ba59bf458a82a0bd001f0736588f995a60c /hw/pci/slotid_cap.c
parenta2cb15b0ddfa05f81a42d7b65dd0c7c50e420c33 (diff)
downloadqemu-c759b24fae08c6c333df03e1db48e13b7f5eda30.zip
qemu-c759b24fae08c6c333df03e1db48e13b7f5eda30.tar.gz
qemu-c759b24fae08c6c333df03e1db48e13b7f5eda30.tar.bz2
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/slotid_cap.c')
-rw-r--r--hw/pci/slotid_cap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/pci/slotid_cap.c b/hw/pci/slotid_cap.c
index 0106452..99a30f4 100644
--- a/hw/pci/slotid_cap.c
+++ b/hw/pci/slotid_cap.c
@@ -1,5 +1,5 @@
-#include "slotid_cap.h"
-#include "pci.h"
+#include "hw/pci/slotid_cap.h"
+#include "hw/pci/pci.h"
#define SLOTID_CAP_LENGTH 4
#define SLOTID_NSLOTS_SHIFT (ffs(PCI_SID_ESR_NSLOTS) - 1)