diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-01-12 09:17:09 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-01-12 09:25:01 -0500 |
commit | 758021bfa9ea25c58e62d2f68512628b19502ce7 (patch) | |
tree | 889c10ea48d5d1216195a13a9899fba6fd669f92 /drivers/media/video/cx88 | |
parent | 2fa51107c9aa80ae95b4524198442cdea82d08a3 (diff) |
drivers/media: Convert to snd_card_create()
Convert from snd_card_new() to the new snd_card_create() function.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'drivers/media/video/cx88')
-rw-r--r-- | drivers/media/video/cx88/cx88-alsa.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/media/video/cx88/cx88-alsa.c b/drivers/media/video/cx88/cx88-alsa.c index 66c755c116dc..ce98d955231a 100644 --- a/drivers/media/video/cx88/cx88-alsa.c +++ b/drivers/media/video/cx88/cx88-alsa.c | |||
@@ -803,9 +803,10 @@ static int __devinit cx88_audio_initdev(struct pci_dev *pci, | |||
803 | return (-ENOENT); | 803 | return (-ENOENT); |
804 | } | 804 | } |
805 | 805 | ||
806 | card = snd_card_new(index[devno], id[devno], THIS_MODULE, sizeof(snd_cx88_card_t)); | 806 | err = snd_card_create(index[devno], id[devno], THIS_MODULE, |
807 | if (!card) | 807 | sizeof(snd_cx88_card_t), &card); |
808 | return (-ENOMEM); | 808 | if (err < 0) |
809 | return err; | ||
809 | 810 | ||
810 | card->private_free = snd_cx88_dev_free; | 811 | card->private_free = snd_cx88_dev_free; |
811 | 812 | ||