diff options
author | Takashi Iwai <tiwai@alsa3.local> | 2008-12-28 10:43:35 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-01-12 09:20:26 -0500 |
commit | c95eadd2f1afd2ba643e85a8dfc9079a3f03ae47 (patch) | |
tree | 1fb2defba2bf3d4c299395b0f46d7902eb3b51ba /sound/isa/opti9xx/opti92x-ad1848.c | |
parent | 53fb1e63599438bd5f6fbb852023d80916d83983 (diff) |
ALSA: Convert to snd_card_create() in sound/isa/*
Convert from snd_card_new() to the new snd_card_create() function.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/isa/opti9xx/opti92x-ad1848.c')
-rw-r--r-- | sound/isa/opti9xx/opti92x-ad1848.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sound/isa/opti9xx/opti92x-ad1848.c b/sound/isa/opti9xx/opti92x-ad1848.c index 19706b0d8497..5750f38bb797 100644 --- a/sound/isa/opti9xx/opti92x-ad1848.c +++ b/sound/isa/opti9xx/opti92x-ad1848.c | |||
@@ -833,9 +833,11 @@ static int __devinit snd_opti9xx_probe(struct snd_card *card) | |||
833 | static struct snd_card *snd_opti9xx_card_new(void) | 833 | static struct snd_card *snd_opti9xx_card_new(void) |
834 | { | 834 | { |
835 | struct snd_card *card; | 835 | struct snd_card *card; |
836 | int err; | ||
836 | 837 | ||
837 | card = snd_card_new(index, id, THIS_MODULE, sizeof(struct snd_opti9xx)); | 838 | err = snd_card_create(index, id, THIS_MODULE, |
838 | if (! card) | 839 | sizeof(struct snd_opti9xx), &card); |
840 | if (err < 0) | ||
839 | return NULL; | 841 | return NULL; |
840 | card->private_free = snd_card_opti9xx_free; | 842 | card->private_free = snd_card_opti9xx_free; |
841 | return card; | 843 | return card; |