diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-09-09 08:20:23 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-09-12 04:47:59 -0400 |
commit | ca2c0966562cfbf9273167a5b60e8fddc24078d6 (patch) | |
tree | 0292047f4cd0a24e1b24914081ebe890bb535877 /sound/core/rawmidi.c | |
parent | 8648811f1db85eeacb821591ef11a2c229c29aa0 (diff) |
[ALSA] Replace with kzalloc() - core stuff
Control Midlevel,ALSA Core,HWDEP Midlevel,PCM Midlevel,RawMidi Midlevel
Timer Midlevel,ALSA<-OSS emulation
Replace kcalloc(1,..) with kzalloc().
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/rawmidi.c')
-rw-r--r-- | sound/core/rawmidi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/core/rawmidi.c b/sound/core/rawmidi.c index 4f4b4101b2f5..7c20eafecb8a 100644 --- a/sound/core/rawmidi.c +++ b/sound/core/rawmidi.c | |||
@@ -101,7 +101,7 @@ static int snd_rawmidi_runtime_create(snd_rawmidi_substream_t * substream) | |||
101 | { | 101 | { |
102 | snd_rawmidi_runtime_t *runtime; | 102 | snd_rawmidi_runtime_t *runtime; |
103 | 103 | ||
104 | if ((runtime = kcalloc(1, sizeof(*runtime), GFP_KERNEL)) == NULL) | 104 | if ((runtime = kzalloc(sizeof(*runtime), GFP_KERNEL)) == NULL) |
105 | return -ENOMEM; | 105 | return -ENOMEM; |
106 | spin_lock_init(&runtime->lock); | 106 | spin_lock_init(&runtime->lock); |
107 | init_waitqueue_head(&runtime->sleep); | 107 | init_waitqueue_head(&runtime->sleep); |
@@ -1374,7 +1374,7 @@ static int snd_rawmidi_alloc_substreams(snd_rawmidi_t *rmidi, | |||
1374 | 1374 | ||
1375 | INIT_LIST_HEAD(&stream->substreams); | 1375 | INIT_LIST_HEAD(&stream->substreams); |
1376 | for (idx = 0; idx < count; idx++) { | 1376 | for (idx = 0; idx < count; idx++) { |
1377 | substream = kcalloc(1, sizeof(*substream), GFP_KERNEL); | 1377 | substream = kzalloc(sizeof(*substream), GFP_KERNEL); |
1378 | if (substream == NULL) | 1378 | if (substream == NULL) |
1379 | return -ENOMEM; | 1379 | return -ENOMEM; |
1380 | substream->stream = direction; | 1380 | substream->stream = direction; |
@@ -1417,7 +1417,7 @@ int snd_rawmidi_new(snd_card_t * card, char *id, int device, | |||
1417 | snd_assert(rrawmidi != NULL, return -EINVAL); | 1417 | snd_assert(rrawmidi != NULL, return -EINVAL); |
1418 | *rrawmidi = NULL; | 1418 | *rrawmidi = NULL; |
1419 | snd_assert(card != NULL, return -ENXIO); | 1419 | snd_assert(card != NULL, return -ENXIO); |
1420 | rmidi = kcalloc(1, sizeof(*rmidi), GFP_KERNEL); | 1420 | rmidi = kzalloc(sizeof(*rmidi), GFP_KERNEL); |
1421 | if (rmidi == NULL) | 1421 | if (rmidi == NULL) |
1422 | return -ENOMEM; | 1422 | return -ENOMEM; |
1423 | rmidi->card = card; | 1423 | rmidi->card = card; |