diff options
Diffstat (limited to 'sound/pci/ymfpci/ymfpci_main.c')
-rw-r--r-- | sound/pci/ymfpci/ymfpci_main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/ymfpci/ymfpci_main.c b/sound/pci/ymfpci/ymfpci_main.c index 054836412dc4..27fa523639ae 100644 --- a/sound/pci/ymfpci/ymfpci_main.c +++ b/sound/pci/ymfpci/ymfpci_main.c | |||
@@ -839,7 +839,7 @@ static int snd_ymfpci_playback_open_1(snd_pcm_substream_t * substream) | |||
839 | snd_pcm_runtime_t *runtime = substream->runtime; | 839 | snd_pcm_runtime_t *runtime = substream->runtime; |
840 | ymfpci_pcm_t *ypcm; | 840 | ymfpci_pcm_t *ypcm; |
841 | 841 | ||
842 | ypcm = kcalloc(1, sizeof(*ypcm), GFP_KERNEL); | 842 | ypcm = kzalloc(sizeof(*ypcm), GFP_KERNEL); |
843 | if (ypcm == NULL) | 843 | if (ypcm == NULL) |
844 | return -ENOMEM; | 844 | return -ENOMEM; |
845 | ypcm->chip = chip; | 845 | ypcm->chip = chip; |
@@ -957,7 +957,7 @@ static int snd_ymfpci_capture_open(snd_pcm_substream_t * substream, | |||
957 | snd_pcm_runtime_t *runtime = substream->runtime; | 957 | snd_pcm_runtime_t *runtime = substream->runtime; |
958 | ymfpci_pcm_t *ypcm; | 958 | ymfpci_pcm_t *ypcm; |
959 | 959 | ||
960 | ypcm = kcalloc(1, sizeof(*ypcm), GFP_KERNEL); | 960 | ypcm = kzalloc(sizeof(*ypcm), GFP_KERNEL); |
961 | if (ypcm == NULL) | 961 | if (ypcm == NULL) |
962 | return -ENOMEM; | 962 | return -ENOMEM; |
963 | ypcm->chip = chip; | 963 | ypcm->chip = chip; |
@@ -2270,7 +2270,7 @@ int __devinit snd_ymfpci_create(snd_card_t * card, | |||
2270 | if ((err = pci_enable_device(pci)) < 0) | 2270 | if ((err = pci_enable_device(pci)) < 0) |
2271 | return err; | 2271 | return err; |
2272 | 2272 | ||
2273 | chip = kcalloc(1, sizeof(*chip), GFP_KERNEL); | 2273 | chip = kzalloc(sizeof(*chip), GFP_KERNEL); |
2274 | if (chip == NULL) { | 2274 | if (chip == NULL) { |
2275 | pci_disable_device(pci); | 2275 | pci_disable_device(pci); |
2276 | return -ENOMEM; | 2276 | return -ENOMEM; |