diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2017-05-08 17:57:33 -0300 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-05-19 10:48:53 +0200 |
commit | ca89f72092bdb42e077f2f64f417edad009ce0ef (patch) | |
tree | ecc5a3714e3bcacd875655147540be20ae0401c2 /hw/audio/Makefile.objs | |
parent | 56821559f0ba682fe6b367815572e6f974d329ab (diff) |
audio: Move arch_init audio code to hw/audio/soundhw.c
There's no reason to keep the soundhw table in arch_init.c. Move
that code to a new hw/audio/soundhw.c file.
While moving the code, trivial coding style issues were fixed.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-id: 20170508205735.23444-2-ehabkost@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/audio/Makefile.objs')
-rw-r--r-- | hw/audio/Makefile.objs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/audio/Makefile.objs b/hw/audio/Makefile.objs index bb6f07a91e..63db383709 100644 --- a/hw/audio/Makefile.objs +++ b/hw/audio/Makefile.objs @@ -14,3 +14,5 @@ common-obj-$(CONFIG_PL041) += pl041.o lm4549.o common-obj-$(CONFIG_CS4231) += cs4231.o common-obj-$(CONFIG_MARVELL_88W8618) += marvell_88w8618.o common-obj-$(CONFIG_MILKYMIST) += milkymist-ac97.o + +common-obj-y += soundhw.o |