diff options
author | Juan Quintela <quintela@redhat.com> | 2009-08-11 02:31:14 +0200 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-08-11 20:51:23 +0400 |
commit | bee37f32d47a6c04ff57d18e01cf296607e22b30 (patch) | |
tree | 546451578b316fd720580b20bd922105ab97f04c /audio/coreaudio.c | |
parent | c981d39c95fcf4c3defa7828a8c9866cf3c83a1b (diff) |
Use proper struct initializers and remove INIT_FIELD() macro
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'audio/coreaudio.c')
-rw-r--r-- | audio/coreaudio.c | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/audio/coreaudio.c b/audio/coreaudio.c index 96714297e5..c46b357d1f 100644 --- a/audio/coreaudio.c +++ b/audio/coreaudio.c @@ -535,16 +535,15 @@ static struct audio_pcm_ops coreaudio_pcm_ops = { }; struct audio_driver coreaudio_audio_driver = { - INIT_FIELD (name = ) "coreaudio", - INIT_FIELD (descr = ) - "CoreAudio http://developer.apple.com/audio/coreaudio.html", - INIT_FIELD (options = ) coreaudio_options, - INIT_FIELD (init = ) coreaudio_audio_init, - INIT_FIELD (fini = ) coreaudio_audio_fini, - INIT_FIELD (pcm_ops = ) &coreaudio_pcm_ops, - INIT_FIELD (can_be_default = ) 1, - INIT_FIELD (max_voices_out = ) 1, - INIT_FIELD (max_voices_in = ) 0, - INIT_FIELD (voice_size_out = ) sizeof (coreaudioVoiceOut), - INIT_FIELD (voice_size_in = ) 0 + .name = "coreaudio", + .descr = "CoreAudio http://developer.apple.com/audio/coreaudio.html", + .options = coreaudio_options, + .init = coreaudio_audio_init, + .fini = coreaudio_audio_fini, + .pcm_ops = &coreaudio_pcm_ops, + .can_be_default = 1, + .max_voices_out = 1, + .max_voices_in = 0, + .voice_size_out = sizeof (coreaudioVoiceOut), + .voice_size_in = 0 }; |