diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-09-09 08:21:46 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-09-12 04:48:16 -0400 |
commit | e560d8d8368ad8b6161839984b253de622863265 (patch) | |
tree | 983e5932adb9da5c0d1d080b11ce7b60049e556f /sound/pci/ca0106/ca0106_main.c | |
parent | 9e76a76efc43d604a20bf0c5564caaf028a24d2e (diff) |
[ALSA] Replace with kzalloc() - pci stuff
AD1889 driver,ATIIXP driver,ATIIXP-modem driver,AZT3328 driver
BT87x driver,CMIPCI driver,CS4281 driver,ENS1370/1+ driver
ES1938 driver,ES1968 driver,FM801 driver,Intel8x0 driver
Intel8x0-modem driver,Maestro3 driver,SonicVibes driver,VIA82xx driver
VIA82xx-modem driver,AC97 Codec,AK4531 codec,au88x0 driver
CA0106 driver,CS46xx driver,EMU10K1/EMU10K2 driver,HDA Codec driver
HDA generic driver,HDA Intel driver,ICE1712 driver,ICE1724 driver
KORG1212 driver,MIXART driver,NM256 driver,Trident driver,YMFPCI driver
Replace kcalloc(1,..) with kzalloc().
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ca0106/ca0106_main.c')
-rw-r--r-- | sound/pci/ca0106/ca0106_main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/ca0106/ca0106_main.c b/sound/pci/ca0106/ca0106_main.c index 4a1abb12ee5b..ba07960921d8 100644 --- a/sound/pci/ca0106/ca0106_main.c +++ b/sound/pci/ca0106/ca0106_main.c | |||
@@ -352,7 +352,7 @@ static int snd_ca0106_pcm_open_playback_channel(snd_pcm_substream_t *substream, | |||
352 | snd_pcm_runtime_t *runtime = substream->runtime; | 352 | snd_pcm_runtime_t *runtime = substream->runtime; |
353 | int err; | 353 | int err; |
354 | 354 | ||
355 | epcm = kcalloc(1, sizeof(*epcm), GFP_KERNEL); | 355 | epcm = kzalloc(sizeof(*epcm), GFP_KERNEL); |
356 | 356 | ||
357 | if (epcm == NULL) | 357 | if (epcm == NULL) |
358 | return -ENOMEM; | 358 | return -ENOMEM; |
@@ -419,7 +419,7 @@ static int snd_ca0106_pcm_open_capture_channel(snd_pcm_substream_t *substream, i | |||
419 | snd_pcm_runtime_t *runtime = substream->runtime; | 419 | snd_pcm_runtime_t *runtime = substream->runtime; |
420 | int err; | 420 | int err; |
421 | 421 | ||
422 | epcm = kcalloc(1, sizeof(*epcm), GFP_KERNEL); | 422 | epcm = kzalloc(sizeof(*epcm), GFP_KERNEL); |
423 | if (epcm == NULL) { | 423 | if (epcm == NULL) { |
424 | snd_printk("open_capture_channel: failed epcm alloc\n"); | 424 | snd_printk("open_capture_channel: failed epcm alloc\n"); |
425 | return -ENOMEM; | 425 | return -ENOMEM; |
@@ -1144,7 +1144,7 @@ static int __devinit snd_ca0106_create(snd_card_t *card, | |||
1144 | return -ENXIO; | 1144 | return -ENXIO; |
1145 | } | 1145 | } |
1146 | 1146 | ||
1147 | chip = kcalloc(1, sizeof(*chip), GFP_KERNEL); | 1147 | chip = kzalloc(sizeof(*chip), GFP_KERNEL); |
1148 | if (chip == NULL) { | 1148 | if (chip == NULL) { |
1149 | pci_disable_device(pci); | 1149 | pci_disable_device(pci); |
1150 | return -ENOMEM; | 1150 | return -ENOMEM; |