diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-09-09 08:22:34 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-09-12 04:48:22 -0400 |
commit | 561b220a4dece18d67177413e6fa21b49aa4acce (patch) | |
tree | 57318610d0b3f97c6193860d7f76dfdb7f743d12 /sound/i2c/l3 | |
parent | e560d8d8368ad8b6161839984b253de622863265 (diff) |
[ALSA] Replace with kzalloc() - others
Documentation,SA11xx UDA1341 driver,Generic drivers,MPU401 UART,OPL3
OPL4,Digigram VX core,I2C cs8427,I2C lib core,I2C tea6330t,L3 drivers
AK4114 receiver,AK4117 receiver,PDAudioCF driver,PPC PMAC driver
SPARC AMD7930 driver,SPARC cs4231 driver,Synth,Common EMU synth
USB generic driver,USB USX2Y
Replace kcalloc(1,..) with kzalloc().
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/i2c/l3')
-rw-r--r-- | sound/i2c/l3/uda1341.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/i2c/l3/uda1341.c b/sound/i2c/l3/uda1341.c index e13122f3fc50..103a7dcd0dde 100644 --- a/sound/i2c/l3/uda1341.c +++ b/sound/i2c/l3/uda1341.c | |||
@@ -17,7 +17,7 @@ | |||
17 | * 2002-05-12 Tomas Kasparek another code cleanup | 17 | * 2002-05-12 Tomas Kasparek another code cleanup |
18 | */ | 18 | */ |
19 | 19 | ||
20 | /* $Id: uda1341.c,v 1.15 2005/01/03 12:05:20 tiwai Exp $ */ | 20 | /* $Id: uda1341.c,v 1.16 2005/09/09 13:22:34 tiwai Exp $ */ |
21 | 21 | ||
22 | #include <sound/driver.h> | 22 | #include <sound/driver.h> |
23 | #include <linux/module.h> | 23 | #include <linux/module.h> |
@@ -670,7 +670,7 @@ int __init snd_chip_uda1341_mixer_new(snd_card_t *card, struct l3_client **clnt) | |||
670 | 670 | ||
671 | snd_assert(card != NULL, return -EINVAL); | 671 | snd_assert(card != NULL, return -EINVAL); |
672 | 672 | ||
673 | uda1341 = kcalloc(1, sizeof(*uda1341), GFP_KERNEL); | 673 | uda1341 = kzalloc(sizeof(*uda1341), GFP_KERNEL); |
674 | if (uda1341 == NULL) | 674 | if (uda1341 == NULL) |
675 | return -ENOMEM; | 675 | return -ENOMEM; |
676 | 676 | ||
@@ -707,7 +707,7 @@ static int uda1341_attach(struct l3_client *clnt) | |||
707 | { | 707 | { |
708 | struct uda1341 *uda; | 708 | struct uda1341 *uda; |
709 | 709 | ||
710 | uda = kcalloc(1, sizeof(*uda), 0, GFP_KERNEL); | 710 | uda = kzalloc(sizeof(*uda), 0, GFP_KERNEL); |
711 | if (!uda) | 711 | if (!uda) |
712 | return -ENOMEM; | 712 | return -ENOMEM; |
713 | 713 | ||