diff options
author | Juan Quintela <quintela@redhat.com> | 2009-08-11 02:31:16 +0200 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-08-11 20:51:23 +0400 |
commit | 2700efa3236d20879473d6b9c612f882a1b43dda (patch) | |
tree | 4098584a760177929300d1d10cad92cb00a23e53 /audio/esdaudio.c | |
parent | bee37f32d47a6c04ff57d18e01cf296607e22b30 (diff) | |
download | qemu-2700efa3236d20879473d6b9c612f882a1b43dda.tar.gz qemu-2700efa3236d20879473d6b9c612f882a1b43dda.tar.bz2 qemu-2700efa3236d20879473d6b9c612f882a1b43dda.zip |
Use C99 initializers for audio_option
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'audio/esdaudio.c')
-rw-r--r-- | audio/esdaudio.c | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/audio/esdaudio.c b/audio/esdaudio.c index ff6725e306..83c18964fe 100644 --- a/audio/esdaudio.c +++ b/audio/esdaudio.c @@ -551,19 +551,23 @@ static void qesd_audio_fini (void *opaque) } struct audio_option qesd_options[] = { - {"SAMPLES", AUD_OPT_INT, &conf.samples, - "buffer size in samples", NULL, 0}, - - {"DIVISOR", AUD_OPT_INT, &conf.divisor, - "threshold divisor", NULL, 0}, - - {"DAC_HOST", AUD_OPT_STR, &conf.dac_host, - "playback host", NULL, 0}, - - {"ADC_HOST", AUD_OPT_STR, &conf.adc_host, - "capture host", NULL, 0}, - - {NULL, 0, NULL, NULL, NULL, 0} + {.name = "SAMPLES", + .tag = AUD_OPT_INT, + .valp = &conf.samples, + .descr = "buffer size in samples"}, + {.name = "DIVISOR", + .tag = AUD_OPT_INT, + .valp = &conf.divisor, + .descr = "threshold divisor"}, + {.name = "DAC_HOST", + .tag = AUD_OPT_STR, + .valp = &conf.dac_host, + .descr = "playback host"}, + {.name = "ADC_HOST", + .tag = AUD_OPT_STR, + .valp = &conf.adc_host, + .descr = "capture host"}, + { /* End of list */ } }; static struct audio_pcm_ops qesd_pcm_ops = { |