diff options
author | BALATON Zoltan | 2021-01-02 11:43:35 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé | 2021-01-04 23:24:44 +0100 |
commit | 657fae258f98000ced6d50a4490a922a207e35f3 (patch) | |
tree | 83acabef49d489196fc010032ace87235460c9c3 /hw/audio/meson.build | |
parent | vt82c686: Remove vt82c686b_[am]c97_init() functions (diff) | |
download | qemu-657fae258f98000ced6d50a4490a922a207e35f3.tar.gz qemu-657fae258f98000ced6d50a4490a922a207e35f3.tar.xz qemu-657fae258f98000ced6d50a4490a922a207e35f3.zip |
vt82c686: Split off via-[am]c97 into separate file in hw/audio
The via-[am]c97 code is supposed to implement the audio part of VIA
south bridge chips so it is better placed under hw/audio/. Split it
off into a separate file.
Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <af083634e3b9efe67e6c4247cf0185d3fa7b1810.1609584216.git.balaton@eik.bme.hu>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'hw/audio/meson.build')
-rw-r--r-- | hw/audio/meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/audio/meson.build b/hw/audio/meson.build index 549e9a0396..32c42bdebe 100644 --- a/hw/audio/meson.build +++ b/hw/audio/meson.build @@ -11,4 +11,5 @@ softmmu_ss.add(when: 'CONFIG_MILKYMIST', if_true: files('milkymist-ac97.c')) softmmu_ss.add(when: 'CONFIG_PCSPK', if_true: files('pcspk.c')) softmmu_ss.add(when: 'CONFIG_PL041', if_true: files('pl041.c', 'lm4549.c')) softmmu_ss.add(when: 'CONFIG_SB16', if_true: files('sb16.c')) +softmmu_ss.add(when: 'CONFIG_VT82C686', if_true: files('via-ac97.c')) softmmu_ss.add(when: 'CONFIG_WM8750', if_true: files('wm8750.c')) |