diff options
Diffstat (limited to 'sound/pci/emu10k1/emupcm.c')
-rw-r--r-- | sound/pci/emu10k1/emupcm.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sound/pci/emu10k1/emupcm.c b/sound/pci/emu10k1/emupcm.c index 9c35f6dde1b5..66ba27afe962 100644 --- a/sound/pci/emu10k1/emupcm.c +++ b/sound/pci/emu10k1/emupcm.c | |||
@@ -1016,7 +1016,7 @@ static int snd_emu10k1_efx_playback_open(snd_pcm_substream_t * substream) | |||
1016 | snd_pcm_runtime_t *runtime = substream->runtime; | 1016 | snd_pcm_runtime_t *runtime = substream->runtime; |
1017 | int i; | 1017 | int i; |
1018 | 1018 | ||
1019 | epcm = kcalloc(1, sizeof(*epcm), GFP_KERNEL); | 1019 | epcm = kzalloc(sizeof(*epcm), GFP_KERNEL); |
1020 | if (epcm == NULL) | 1020 | if (epcm == NULL) |
1021 | return -ENOMEM; | 1021 | return -ENOMEM; |
1022 | epcm->emu = emu; | 1022 | epcm->emu = emu; |
@@ -1049,7 +1049,7 @@ static int snd_emu10k1_playback_open(snd_pcm_substream_t * substream) | |||
1049 | snd_pcm_runtime_t *runtime = substream->runtime; | 1049 | snd_pcm_runtime_t *runtime = substream->runtime; |
1050 | int i, err; | 1050 | int i, err; |
1051 | 1051 | ||
1052 | epcm = kcalloc(1, sizeof(*epcm), GFP_KERNEL); | 1052 | epcm = kzalloc(sizeof(*epcm), GFP_KERNEL); |
1053 | if (epcm == NULL) | 1053 | if (epcm == NULL) |
1054 | return -ENOMEM; | 1054 | return -ENOMEM; |
1055 | epcm->emu = emu; | 1055 | epcm->emu = emu; |
@@ -1094,7 +1094,7 @@ static int snd_emu10k1_capture_open(snd_pcm_substream_t * substream) | |||
1094 | snd_pcm_runtime_t *runtime = substream->runtime; | 1094 | snd_pcm_runtime_t *runtime = substream->runtime; |
1095 | emu10k1_pcm_t *epcm; | 1095 | emu10k1_pcm_t *epcm; |
1096 | 1096 | ||
1097 | epcm = kcalloc(1, sizeof(*epcm), GFP_KERNEL); | 1097 | epcm = kzalloc(sizeof(*epcm), GFP_KERNEL); |
1098 | if (epcm == NULL) | 1098 | if (epcm == NULL) |
1099 | return -ENOMEM; | 1099 | return -ENOMEM; |
1100 | epcm->emu = emu; | 1100 | epcm->emu = emu; |
@@ -1130,7 +1130,7 @@ static int snd_emu10k1_capture_mic_open(snd_pcm_substream_t * substream) | |||
1130 | emu10k1_pcm_t *epcm; | 1130 | emu10k1_pcm_t *epcm; |
1131 | snd_pcm_runtime_t *runtime = substream->runtime; | 1131 | snd_pcm_runtime_t *runtime = substream->runtime; |
1132 | 1132 | ||
1133 | epcm = kcalloc(1, sizeof(*epcm), GFP_KERNEL); | 1133 | epcm = kzalloc(sizeof(*epcm), GFP_KERNEL); |
1134 | if (epcm == NULL) | 1134 | if (epcm == NULL) |
1135 | return -ENOMEM; | 1135 | return -ENOMEM; |
1136 | epcm->emu = emu; | 1136 | epcm->emu = emu; |
@@ -1170,7 +1170,7 @@ static int snd_emu10k1_capture_efx_open(snd_pcm_substream_t * substream) | |||
1170 | int nefx = emu->audigy ? 64 : 32; | 1170 | int nefx = emu->audigy ? 64 : 32; |
1171 | int idx; | 1171 | int idx; |
1172 | 1172 | ||
1173 | epcm = kcalloc(1, sizeof(*epcm), GFP_KERNEL); | 1173 | epcm = kzalloc(sizeof(*epcm), GFP_KERNEL); |
1174 | if (epcm == NULL) | 1174 | if (epcm == NULL) |
1175 | return -ENOMEM; | 1175 | return -ENOMEM; |
1176 | epcm->emu = emu; | 1176 | epcm->emu = emu; |