diff options
| author | Rakesh Jeyasingh <rakeshjb010@gmail.com> | 2025-04-29 22:33:54 +0530 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2025-05-20 08:04:18 +0200 |
| commit | 560375cff3ccedabf1fe5ca1bc7a31b13fdc68e5 (patch) | |
| tree | e376b50b4542a1feede24ac81cfea2308fc450b9 /hw/pci/pci_host.c | |
| parent | e5894fd6f411c113e2b5f62811e96eeb5b084381 (diff) | |
| download | focaccia-qemu-560375cff3ccedabf1fe5ca1bc7a31b13fdc68e5.tar.gz focaccia-qemu-560375cff3ccedabf1fe5ca1bc7a31b13fdc68e5.zip | |
hw/pci-host: Remove unused pci_host_data_be_ops
pci_host_data_be_ops became unused after endianness fixes Suggested-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Rakesh Jeyasingh <rakeshjb010@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Tested-by: Thomas Huth <thuth@redhat.com> Link: https://lore.kernel.org/r/20250429170354.150581-3-rakeshjb010@gmail.com Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/pci/pci_host.c')
| -rw-r--r-- | hw/pci/pci_host.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/hw/pci/pci_host.c b/hw/pci/pci_host.c index abe83bbab8..7179d99178 100644 --- a/hw/pci/pci_host.c +++ b/hw/pci/pci_host.c @@ -217,12 +217,6 @@ const MemoryRegionOps pci_host_data_le_ops = { .endianness = DEVICE_LITTLE_ENDIAN, }; -const MemoryRegionOps pci_host_data_be_ops = { - .read = pci_host_data_read, - .write = pci_host_data_write, - .endianness = DEVICE_BIG_ENDIAN, -}; - static bool pci_host_needed(void *opaque) { PCIHostState *s = opaque; |