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/shpc.c | |
parent | a2cb15b0ddfa05f81a42d7b65dd0c7c50e420c33 (diff) | |
download | qemu-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/shpc.c')
-rw-r--r-- | hw/pci/shpc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/pci/shpc.c b/hw/pci/shpc.c index 4597bbd..38693f7 100644 --- a/hw/pci/shpc.c +++ b/hw/pci/shpc.c @@ -2,10 +2,10 @@ #include <stdint.h> #include "range.h" #include "range.h" -#include "shpc.h" -#include "pci.h" -#include "pci_internals.h" -#include "msi.h" +#include "hw/pci/shpc.h" +#include "hw/pci/pci.h" +#include "hw/pci/pci_internals.h" +#include "hw/pci/msi.h" /* TODO: model power only and disabled slot states. */ /* TODO: handle SERR and wakeups */ |