diff options
author | Bernhard Beschow <shentey@gmail.com> | 2024-12-05 14:19:37 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-12-14 00:16:20 +0100 |
commit | 1b26146e898086cd85be22170e7988017b481bb0 (patch) | |
tree | 3841a6e5f0515edf9571a932209ff6a47bfee301 /hw/ide/meson.build | |
parent | 8a4989f526cae238d1cf044c62c847ed708c92c6 (diff) | |
download | qemu-1b26146e898086cd85be22170e7988017b481bb0.zip qemu-1b26146e898086cd85be22170e7988017b481bb0.tar.gz qemu-1b26146e898086cd85be22170e7988017b481bb0.tar.bz2 |
hw/ide/ahci: Extract TYPE_SYSBUS_AHCI into dedicated file
Implement in dedicated file, just like TYPE_ICH9_AHCI.
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20241212110926.23548-3-shentey@gmail.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'hw/ide/meson.build')
-rw-r--r-- | hw/ide/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/ide/meson.build b/hw/ide/meson.build index 90ea861..ddd7066 100644 --- a/hw/ide/meson.build +++ b/hw/ide/meson.build @@ -1,5 +1,6 @@ system_ss.add(when: 'CONFIG_AHCI', if_true: files('ahci.c')) system_ss.add(when: 'CONFIG_AHCI_ICH9', if_true: files('ich.c')) +system_ss.add(when: 'CONFIG_AHCI_SYSBUS', if_true: files('ahci-sysbus.c')) system_ss.add(when: 'CONFIG_ALLWINNER_A10', if_true: files('ahci-allwinner.c')) system_ss.add(when: 'CONFIG_IDE_BUS', if_true: files('ide-bus.c')) system_ss.add(when: 'CONFIG_IDE_CF', if_true: files('cf.c')) |