diff options
author | Alex Bennée | 2022-03-21 16:30:25 +0100 |
---|---|---|
committer | Michael S. Tsirkin | 2022-05-16 10:38:40 +0200 |
commit | e1b1f5341a860e87c6f208e2eea7a3b2bab454dd (patch) | |
tree | b97cc10ac973228734dc83ed32d786da9dbdf3a2 /hw/virtio/vhost-user-input-pci.c | |
parent | vhost_net: Print feature masks in hex (diff) | |
download | qemu-e1b1f5341a860e87c6f208e2eea7a3b2bab454dd.tar.gz qemu-e1b1f5341a860e87c6f208e2eea7a3b2bab454dd.tar.xz qemu-e1b1f5341a860e87c6f208e2eea7a3b2bab454dd.zip |
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-user-input-pci.c')
-rw-r--r-- | hw/virtio/vhost-user-input-pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/virtio/vhost-user-input-pci.c b/hw/virtio/vhost-user-input-pci.c index c9d3e9113a..b858898a36 100644 --- a/hw/virtio/vhost-user-input-pci.c +++ b/hw/virtio/vhost-user-input-pci.c @@ -9,7 +9,7 @@ #include "hw/virtio/virtio-input.h" #include "qapi/error.h" #include "qemu/error-report.h" -#include "virtio-pci.h" +#include "hw/virtio/virtio-pci.h" #include "qom/object.h" typedef struct VHostUserInputPCI VHostUserInputPCI; |