diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2022-03-21 15:30:25 +0000 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2022-05-16 04:38:40 -0400 |
commit | e1b1f5341a860e87c6f208e2eea7a3b2bab454dd (patch) | |
tree | b97cc10ac973228734dc83ed32d786da9dbdf3a2 /hw/virtio/vhost-vsock-pci.c | |
parent | 1eed051c8c8cd84e69f619b0adc22df543ed7f06 (diff) | |
download | qemu-e1b1f5341a860e87c6f208e2eea7a3b2bab454dd.zip qemu-e1b1f5341a860e87c6f208e2eea7a3b2bab454dd.tar.gz qemu-e1b1f5341a860e87c6f208e2eea7a3b2bab454dd.tar.bz2 |
hw/virtio: move virtio-pci.h into shared include space
This allows other device classes that will be exposed via PCI to be
able to do so in the appropriate hw/ directory. I resisted the
temptation to re-order headers to be more aesthetically pleasing.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20200925125147.26943-4-alex.bennee@linaro.org>
Message-Id: <20220321153037.3622127-2-alex.bennee@linaro.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/virtio/vhost-vsock-pci.c')
-rw-r--r-- | hw/virtio/vhost-vsock-pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/virtio/vhost-vsock-pci.c b/hw/virtio/vhost-vsock-pci.c index 205da8d..9f34414 100644 --- a/hw/virtio/vhost-vsock-pci.c +++ b/hw/virtio/vhost-vsock-pci.c @@ -13,7 +13,7 @@ #include "qemu/osdep.h" -#include "virtio-pci.h" +#include "hw/virtio/virtio-pci.h" #include "hw/qdev-properties.h" #include "hw/virtio/vhost-vsock.h" #include "qemu/module.h" |