diff options
Diffstat (limited to 'sound/pci/ac97/ac97_codec.c')
-rw-r--r-- | sound/pci/ac97/ac97_codec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/ac97/ac97_codec.c b/sound/pci/ac97/ac97_codec.c index 3b66fa689366..e64cb07a39c2 100644 --- a/sound/pci/ac97/ac97_codec.c +++ b/sound/pci/ac97/ac97_codec.c | |||
@@ -1797,7 +1797,7 @@ int snd_ac97_bus(snd_card_t *card, int num, ac97_bus_ops_t *ops, | |||
1797 | 1797 | ||
1798 | snd_assert(card != NULL, return -EINVAL); | 1798 | snd_assert(card != NULL, return -EINVAL); |
1799 | snd_assert(rbus != NULL, return -EINVAL); | 1799 | snd_assert(rbus != NULL, return -EINVAL); |
1800 | bus = kcalloc(1, sizeof(*bus), GFP_KERNEL); | 1800 | bus = kzalloc(sizeof(*bus), GFP_KERNEL); |
1801 | if (bus == NULL) | 1801 | if (bus == NULL) |
1802 | return -ENOMEM; | 1802 | return -ENOMEM; |
1803 | bus->card = card; | 1803 | bus->card = card; |
@@ -1906,7 +1906,7 @@ int snd_ac97_mixer(ac97_bus_t *bus, ac97_template_t *template, ac97_t **rac97) | |||
1906 | } | 1906 | } |
1907 | 1907 | ||
1908 | card = bus->card; | 1908 | card = bus->card; |
1909 | ac97 = kcalloc(1, sizeof(*ac97), GFP_KERNEL); | 1909 | ac97 = kzalloc(sizeof(*ac97), GFP_KERNEL); |
1910 | if (ac97 == NULL) | 1910 | if (ac97 == NULL) |
1911 | return -ENOMEM; | 1911 | return -ENOMEM; |
1912 | ac97->private_data = template->private_data; | 1912 | ac97->private_data = template->private_data; |