diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2017-05-08 17:57:34 -0300 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-05-19 10:48:53 +0200 |
commit | 4c565674a2af027fba977bea8ab1bdf440d0cf63 (patch) | |
tree | d227b741d4b74a39f0c7081625bc457c75e8f927 /hw | |
parent | ca89f72092bdb42e077f2f64f417edad009ce0ef (diff) | |
download | qemu-4c565674a2af027fba977bea8ab1bdf440d0cf63.zip qemu-4c565674a2af027fba977bea8ab1bdf440d0cf63.tar.gz qemu-4c565674a2af027fba977bea8ab1bdf440d0cf63.tar.bz2 |
audio: Rename audio_init() to soundhw_init()
To make it consistent with the remaining soundhw.c functions and
avoid confusion with the audio_init() function in audio/audio.c,
rename audio_init() to soundhw_init().
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Message-id: 20170508205735.23444-3-ehabkost@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/audio/soundhw.c | 2 | ||||
-rw-r--r-- | hw/ppc/prep.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hw/audio/soundhw.c b/hw/audio/soundhw.c index 5e96b73..29565da 100644 --- a/hw/audio/soundhw.c +++ b/hw/audio/soundhw.c @@ -129,7 +129,7 @@ void select_soundhw(const char *optarg) } } -void audio_init(void) +void soundhw_init(void) { struct soundhw *c; ISABus *isa_bus = (ISABus *) object_resolve_path_type("", TYPE_ISA_BUS, NULL); diff --git a/hw/ppc/prep.c b/hw/ppc/prep.c index 96a4813..4a7d2cf 100644 --- a/hw/ppc/prep.c +++ b/hw/ppc/prep.c @@ -783,7 +783,7 @@ static void ibm_40p_init(MachineState *machine) &cmos_checksum); /* initialize audio subsystem */ - audio_init(); + soundhw_init(); /* add some more devices */ if (defaults_enabled()) { |