diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-07-08 23:53:18 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2025-07-15 02:56:39 -0400 |
commit | 0f64fb674360393ae09605d8d53bf81c02c78a3e (patch) | |
tree | ebd6dfc1ff958d482f6a688fadd45e214fd57483 /hw/virtio | |
parent | 16c9cb7187ef2414e3ad509048d59a8a4e7d1cd1 (diff) | |
download | qemu-0f64fb674360393ae09605d8d53bf81c02c78a3e.zip qemu-0f64fb674360393ae09605d8d53bf81c02c78a3e.tar.gz qemu-0f64fb674360393ae09605d8d53bf81c02c78a3e.tar.bz2 |
qemu: Declare all load/store helper in 'qemu/bswap.h'
Restrict "exec/tswap.h" to the tswap*() methods,
move the load/store helpers with the other ones
declared in "qemu/bswap.h".
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Message-Id: <20250708215320.70426-8-philmd@linaro.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/virtio')
-rw-r--r-- | hw/virtio/virtio-pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c index fba2372..767216d 100644 --- a/hw/virtio/virtio-pci.c +++ b/hw/virtio/virtio-pci.c @@ -30,6 +30,7 @@ #include "qemu/error-report.h" #include "qemu/log.h" #include "qemu/module.h" +#include "qemu/bswap.h" #include "hw/pci/msi.h" #include "hw/pci/msix.h" #include "hw/loader.h" |