[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 4/6] hw/misc/ivshmem: Rename ivshmem to ivshmem-pci
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH v2 4/6] hw/misc/ivshmem: Rename ivshmem to ivshmem-pci |
Date: |
Fri, 16 Feb 2024 15:44:54 +0100 |
From: Gustavo Romero <gustavo.romero@linaro.org>
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.
Signed-off-by: Gustavo Romero <gustavo.romero@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20231127052024.435743-5-gustavo.romero@linaro.org>
---
hw/misc/{ivshmem.c => ivshmem-pci.c} | 0
hw/misc/meson.build | 2 +-
2 files changed, 1 insertion(+), 1 deletion(-)
rename hw/misc/{ivshmem.c => ivshmem-pci.c} (100%)
diff --git a/hw/misc/ivshmem.c b/hw/misc/ivshmem-pci.c
similarity index 100%
rename from hw/misc/ivshmem.c
rename to hw/misc/ivshmem-pci.c
diff --git a/hw/misc/meson.build b/hw/misc/meson.build
index 84dff09f5d..4a9369082b 100644
--- a/hw/misc/meson.build
+++ b/hw/misc/meson.build
@@ -39,7 +39,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'))
--
2.41.0
- [PATCH v2 0/6] Add ivshmem-flat device, Philippe Mathieu-Daudé, 2024/02/16
- [PATCH v2 1/6] hw/misc/ivshmem: Add ivshmem-flat device, Philippe Mathieu-Daudé, 2024/02/16
- [PATCH v2 2/6] hw/misc/ivshmem-flat: Allow device to wire itself on sysbus, Philippe Mathieu-Daudé, 2024/02/16
- [PATCH v2 3/6] hw/arm: Allow some machines to use the ivshmem-flat device, Philippe Mathieu-Daudé, 2024/02/16
- [PATCH v2 4/6] hw/misc/ivshmem: Rename ivshmem to ivshmem-pci,
Philippe Mathieu-Daudé <=
- [PATCH v2 5/6] tests/qtest: Reorganize common code in ivshmem-test, Philippe Mathieu-Daudé, 2024/02/16
- [PATCH v2 6/6] tests/qtest: Add ivshmem-flat test, Philippe Mathieu-Daudé, 2024/02/16