diff options
Diffstat (limited to 'sound/pci/trident/trident_main.c')
-rw-r--r-- | sound/pci/trident/trident_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/trident/trident_main.c b/sound/pci/trident/trident_main.c index f30d9d947862..777da9a7298b 100644 --- a/sound/pci/trident/trident_main.c +++ b/sound/pci/trident/trident_main.c | |||
@@ -2960,7 +2960,7 @@ static int __devinit snd_trident_mixer(trident_t * trident, int pcm_spdif_device | |||
2960 | .read = snd_trident_codec_read, | 2960 | .read = snd_trident_codec_read, |
2961 | }; | 2961 | }; |
2962 | 2962 | ||
2963 | uctl = kcalloc(1, sizeof(*uctl), GFP_KERNEL); | 2963 | uctl = kzalloc(sizeof(*uctl), GFP_KERNEL); |
2964 | if (!uctl) | 2964 | if (!uctl) |
2965 | return -ENOMEM; | 2965 | return -ENOMEM; |
2966 | 2966 | ||
@@ -3546,7 +3546,7 @@ int __devinit snd_trident_create(snd_card_t * card, | |||
3546 | return -ENXIO; | 3546 | return -ENXIO; |
3547 | } | 3547 | } |
3548 | 3548 | ||
3549 | trident = kcalloc(1, sizeof(*trident), GFP_KERNEL); | 3549 | trident = kzalloc(sizeof(*trident), GFP_KERNEL); |
3550 | if (trident == NULL) { | 3550 | if (trident == NULL) { |
3551 | pci_disable_device(pci); | 3551 | pci_disable_device(pci); |
3552 | return -ENOMEM; | 3552 | return -ENOMEM; |