diff --git a/hypervisor/dm/vpci/partition_mode.c b/hypervisor/dm/vpci/partition_mode.c index e186c7f2f..b21579f8a 100644 --- a/hypervisor/dm/vpci/partition_mode.c +++ b/hypervisor/dm/vpci/partition_mode.c @@ -31,7 +31,7 @@ #include #include -#include "pci_priv.h" +#include "vpci_priv.h" static inline bool is_hostbridge(const struct pci_vdev *vdev) diff --git a/hypervisor/dm/vpci/pci_pt.c b/hypervisor/dm/vpci/pci_pt.c index 2df3c7c59..c3d84f322 100644 --- a/hypervisor/dm/vpci/pci_pt.c +++ b/hypervisor/dm/vpci/pci_pt.c @@ -35,7 +35,7 @@ #include #include #include -#include "pci_priv.h" +#include "vpci_priv.h" static inline uint32_t pci_bar_base(uint32_t bar) { diff --git a/hypervisor/dm/vpci/sharing_mode.c b/hypervisor/dm/vpci/sharing_mode.c index 4201b76d0..d100d572e 100644 --- a/hypervisor/dm/vpci/sharing_mode.c +++ b/hypervisor/dm/vpci/sharing_mode.c @@ -29,7 +29,7 @@ #include #include -#include "pci_priv.h" +#include "vpci_priv.h" static struct pci_vdev *sharing_mode_find_vdev_sos(union pci_bdf pbdf) diff --git a/hypervisor/dm/vpci/vdev.c b/hypervisor/dm/vpci/vdev.c index c2f265121..9333884be 100644 --- a/hypervisor/dm/vpci/vdev.c +++ b/hypervisor/dm/vpci/vdev.c @@ -28,7 +28,7 @@ */ #include -#include "pci_priv.h" +#include "vpci_priv.h" uint32_t pci_vdev_read_cfg(const struct pci_vdev *vdev, uint32_t offset, uint32_t bytes) { diff --git a/hypervisor/dm/vpci/vhostbridge.c b/hypervisor/dm/vpci/vhostbridge.c index df7d3cb83..3766f1dbf 100644 --- a/hypervisor/dm/vpci/vhostbridge.c +++ b/hypervisor/dm/vpci/vhostbridge.c @@ -37,7 +37,7 @@ #include #include #include -#include "pci_priv.h" +#include "vpci_priv.h" void vdev_hostbridge_init(struct pci_vdev *vdev) { diff --git a/hypervisor/dm/vpci/vmsi.c b/hypervisor/dm/vpci/vmsi.c index b0ab3a3a1..2d18867f4 100644 --- a/hypervisor/dm/vpci/vmsi.c +++ b/hypervisor/dm/vpci/vmsi.c @@ -32,7 +32,7 @@ #include #include #include -#include "pci_priv.h" +#include "vpci_priv.h" /** diff --git a/hypervisor/dm/vpci/vmsix.c b/hypervisor/dm/vpci/vmsix.c index 93da7d97b..84ffe23ca 100644 --- a/hypervisor/dm/vpci/vmsix.c +++ b/hypervisor/dm/vpci/vmsix.c @@ -36,7 +36,7 @@ #include #include #include -#include "pci_priv.h" +#include "vpci_priv.h" /** * @pre vdev != NULL diff --git a/hypervisor/dm/vpci/vpci.c b/hypervisor/dm/vpci/vpci.c index 1df34cd7b..beec35978 100644 --- a/hypervisor/dm/vpci/vpci.c +++ b/hypervisor/dm/vpci/vpci.c @@ -30,7 +30,7 @@ #include #include #include -#include "pci_priv.h" +#include "vpci_priv.h" static void pci_cfg_clear_cache(struct pci_addr_info *pi) { diff --git a/hypervisor/dm/vpci/pci_priv.h b/hypervisor/dm/vpci/vpci_priv.h similarity index 100% rename from hypervisor/dm/vpci/pci_priv.h rename to hypervisor/dm/vpci/vpci_priv.h