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/sparc | |
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/sparc')
-rw-r--r-- | sound/sparc/amd7930.c | 2 | ||||
-rw-r--r-- | sound/sparc/cs4231.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sound/sparc/amd7930.c b/sound/sparc/amd7930.c index ed0d5f2f0888..46d504ba7e03 100644 --- a/sound/sparc/amd7930.c +++ b/sound/sparc/amd7930.c | |||
@@ -967,7 +967,7 @@ static int __init snd_amd7930_create(snd_card_t *card, | |||
967 | int err; | 967 | int err; |
968 | 968 | ||
969 | *ramd = NULL; | 969 | *ramd = NULL; |
970 | amd = kcalloc(1, sizeof(*amd), GFP_KERNEL); | 970 | amd = kzalloc(sizeof(*amd), GFP_KERNEL); |
971 | if (amd == NULL) | 971 | if (amd == NULL) |
972 | return -ENOMEM; | 972 | return -ENOMEM; |
973 | 973 | ||
diff --git a/sound/sparc/cs4231.c b/sound/sparc/cs4231.c index bd169f541181..2fb27c4e951f 100644 --- a/sound/sparc/cs4231.c +++ b/sound/sparc/cs4231.c | |||
@@ -1969,7 +1969,7 @@ static int __init snd_cs4231_sbus_create(snd_card_t *card, | |||
1969 | int err; | 1969 | int err; |
1970 | 1970 | ||
1971 | *rchip = NULL; | 1971 | *rchip = NULL; |
1972 | chip = kcalloc(1, sizeof(*chip), GFP_KERNEL); | 1972 | chip = kzalloc(sizeof(*chip), GFP_KERNEL); |
1973 | if (chip == NULL) | 1973 | if (chip == NULL) |
1974 | return -ENOMEM; | 1974 | return -ENOMEM; |
1975 | 1975 | ||
@@ -2083,7 +2083,7 @@ static int __init snd_cs4231_ebus_create(snd_card_t *card, | |||
2083 | int err; | 2083 | int err; |
2084 | 2084 | ||
2085 | *rchip = NULL; | 2085 | *rchip = NULL; |
2086 | chip = kcalloc(1, sizeof(*chip), GFP_KERNEL); | 2086 | chip = kzalloc(sizeof(*chip), GFP_KERNEL); |
2087 | if (chip == NULL) | 2087 | if (chip == NULL) |
2088 | return -ENOMEM; | 2088 | return -ENOMEM; |
2089 | 2089 | ||