diff options
| author | Gustavo Romero <gustavo.romero@linaro.org> | 2023-11-27 05:20:24 +0000 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-31 21:21:34 +0100 |
| commit | 4daf88c16550a07aa5f228aa1b2660ea1fa1ddc1 (patch) | |
| tree | 32f6ae3454a4e13898d35543098c78392ec2b17c | |
| parent | e6c33efed3ca8ffbf89f0e1dbeac1a0e32d0f8b7 (diff) | |
| download | focaccia-qemu-4daf88c16550a07aa5f228aa1b2660ea1fa1ddc1.tar.gz focaccia-qemu-4daf88c16550a07aa5f228aa1b2660ea1fa1ddc1.zip | |
hw/misc/ivshmem: Rename ivshmem to ivshmem-pci
Because now there is also an MMIO ivshmem device (ivshmem-flat.c), and ivshmem.c is a PCI specific implementation, rename it to ivshmem-pci.c. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Gustavo Romero <gustavo.romero@linaro.org> Message-ID: <20241216141818.111255-5-gustavo.romero@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
| -rw-r--r-- | hw/misc/ivshmem-pci.c (renamed from hw/misc/ivshmem.c) | 0 | ||||
| -rw-r--r-- | hw/misc/meson.build | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/hw/misc/ivshmem.c b/hw/misc/ivshmem-pci.c index 900d523334..900d523334 100644 --- a/hw/misc/ivshmem.c +++ b/hw/misc/ivshmem-pci.c diff --git a/hw/misc/meson.build b/hw/misc/meson.build index 7a16ddb1dc..55f493521b 100644 --- a/hw/misc/meson.build +++ b/hw/misc/meson.build @@ -38,7 +38,7 @@ system_ss.add(when: 'CONFIG_SIFIVE_U_PRCI', if_true: files('sifive_u_prci.c')) subdir('macio') # ivshmem devices -system_ss.add(when: 'CONFIG_IVSHMEM_DEVICE', if_true: files('ivshmem.c')) +system_ss.add(when: 'CONFIG_IVSHMEM_DEVICE', if_true: files('ivshmem-pci.c')) system_ss.add(when: 'CONFIG_IVSHMEM_FLAT_DEVICE', if_true: files('ivshmem-flat.c')) system_ss.add(when: 'CONFIG_ALLWINNER_SRAMC', if_true: files('allwinner-sramc.c')) |