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/es18xx.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/es18xx.c')
-rw-r--r-- | sound/isa/es18xx.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sound/isa/es18xx.c b/sound/isa/es18xx.c index 90498e4ca260..c24c6322fcc9 100644 --- a/sound/isa/es18xx.c +++ b/sound/isa/es18xx.c | |||
@@ -2127,8 +2127,11 @@ static int __devinit snd_audiodrive_pnpc(int dev, struct snd_audiodrive *acard, | |||
2127 | 2127 | ||
2128 | static struct snd_card *snd_es18xx_card_new(int dev) | 2128 | static struct snd_card *snd_es18xx_card_new(int dev) |
2129 | { | 2129 | { |
2130 | return snd_card_new(index[dev], id[dev], THIS_MODULE, | 2130 | struct snd_card *card; |
2131 | sizeof(struct snd_audiodrive)); | 2131 | if (snd_card_create(index[dev], id[dev], THIS_MODULE, |
2132 | sizeof(struct snd_audiodrive), &card) < 0) | ||
2133 | return NULL; | ||
2134 | return card; | ||
2132 | } | 2135 | } |
2133 | 2136 | ||
2134 | static int __devinit snd_audiodrive_probe(struct snd_card *card, int dev) | 2137 | static int __devinit snd_audiodrive_probe(struct snd_card *card, int dev) |