aboutsummaryrefslogtreecommitdiff
path: root/hw/sd/meson.build
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2024-06-20 14:51:03 +0200
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2024-07-02 10:08:32 +0200
commitd4613f9f40a355e5f99268ac9daf7ad14764e99f (patch)
tree96978e487ed9d29d8bc3e88385f049be53cf24f7 /hw/sd/meson.build
parent77a2f97d1d1390d493a881983123bff5d04ead9a (diff)
downloadqemu-d4613f9f40a355e5f99268ac9daf7ad14764e99f.zip
qemu-d4613f9f40a355e5f99268ac9daf7ad14764e99f.tar.gz
qemu-d4613f9f40a355e5f99268ac9daf7ad14764e99f.tar.bz2
hw/sd/sdcard: Move sd_[a]cmd_name() methods to sd.c
Merge sdmmc-internal.c into sd.c by moving sd_cmd_name() and sd_acmd_name() and updating meson.build. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Tested-by: Cédric Le Goater <clg@redhat.com> Reviewed-by: Cédric Le Goater <clg@redhat.com> Message-Id: <20240628070216.92609-37-philmd@linaro.org>
Diffstat (limited to 'hw/sd/meson.build')
-rw-r--r--hw/sd/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/sd/meson.build b/hw/sd/meson.build
index abfac9e..bbb75af 100644
--- a/hw/sd/meson.build
+++ b/hw/sd/meson.build
@@ -1,5 +1,5 @@
system_ss.add(when: 'CONFIG_PL181', if_true: files('pl181.c'))
-system_ss.add(when: 'CONFIG_SD', if_true: files('sd.c', 'core.c', 'sdmmc-internal.c'))
+system_ss.add(when: 'CONFIG_SD', if_true: files('sd.c', 'core.c'))
system_ss.add(when: 'CONFIG_SDHCI', if_true: files('sdhci.c'))
system_ss.add(when: 'CONFIG_SDHCI_PCI', if_true: files('sdhci-pci.c'))
system_ss.add(when: 'CONFIG_SSI_SD', if_true: files('ssi-sd.c'))