diff options
| author | Michael S. Tsirkin <mst@redhat.com> | 2012-12-12 14:24:50 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2012-12-17 13:02:26 +0200 |
| commit | a2cb15b0ddfa05f81a42d7b65dd0c7c50e420c33 (patch) | |
| tree | 6728fcf054002385da6c8cade63dab65f5e5f4ee /hw/spapr_pci.c | |
| parent | 315a1350c4a386065a73aad2ded1a11d77bf7771 (diff) | |
| download | focaccia-qemu-a2cb15b0ddfa05f81a42d7b65dd0c7c50e420c33.tar.gz focaccia-qemu-a2cb15b0ddfa05f81a42d7b65dd0c7c50e420c33.zip | |
pci: update all users to look in pci/
update all users so we can remove the makefile hack. Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/spapr_pci.c')
| -rw-r--r-- | hw/spapr_pci.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hw/spapr_pci.c b/hw/spapr_pci.c index 3c5b855bc0..2386164d5d 100644 --- a/hw/spapr_pci.c +++ b/hw/spapr_pci.c @@ -23,17 +23,17 @@ * THE SOFTWARE. */ #include "hw.h" -#include "pci.h" -#include "msi.h" -#include "msix.h" -#include "pci_host.h" +#include "pci/pci.h" +#include "pci/msi.h" +#include "pci/msix.h" +#include "pci/pci_host.h" #include "hw/spapr.h" #include "hw/spapr_pci.h" #include "exec-memory.h" #include <libfdt.h> #include "trace.h" -#include "hw/pci_internals.h" +#include "hw/pci/pci_internals.h" /* Copied from the kernel arch/powerpc/platforms/pseries/msi.c */ #define RTAS_QUERY_FN 0 |