diff options
author | Takashi Iwai <tiwai@suse.de> | 2014-01-29 08:20:19 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-02-12 05:17:52 -0500 |
commit | 60c5772b50fe8ce947685cfe3a80b9bf6ea92831 (patch) | |
tree | ad2d8a112bd708ff58f96ccb2ec7b15d88676379 /sound/pci/ali5451/ali5451.c | |
parent | 4323cc4d5b25b5138c0791e3c7d3b09bd7062b49 (diff) |
ALSA: pci: Convert to snd_card_new() with a device pointer
Also remove superfluous snd_card_set_dev() calls.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ali5451/ali5451.c')
-rw-r--r-- | sound/pci/ali5451/ali5451.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sound/pci/ali5451/ali5451.c b/sound/pci/ali5451/ali5451.c index c6835a3d64fb..115b1120319a 100644 --- a/sound/pci/ali5451/ali5451.c +++ b/sound/pci/ali5451/ali5451.c | |||
@@ -2218,8 +2218,6 @@ static int snd_ali_create(struct snd_card *card, | |||
2218 | return err; | 2218 | return err; |
2219 | } | 2219 | } |
2220 | 2220 | ||
2221 | snd_card_set_dev(card, &pci->dev); | ||
2222 | |||
2223 | /* initialise synth voices*/ | 2221 | /* initialise synth voices*/ |
2224 | for (i = 0; i < ALI_CHANNELS; i++) | 2222 | for (i = 0; i < ALI_CHANNELS; i++) |
2225 | codec->synth.voices[i].number = i; | 2223 | codec->synth.voices[i].number = i; |
@@ -2253,7 +2251,7 @@ static int snd_ali_probe(struct pci_dev *pci, | |||
2253 | 2251 | ||
2254 | snd_ali_printk("probe ...\n"); | 2252 | snd_ali_printk("probe ...\n"); |
2255 | 2253 | ||
2256 | err = snd_card_create(index, id, THIS_MODULE, 0, &card); | 2254 | err = snd_card_new(&pci->dev, index, id, THIS_MODULE, 0, &card); |
2257 | if (err < 0) | 2255 | if (err < 0) |
2258 | return err; | 2256 | return err; |
2259 | 2257 | ||