mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 22:51:35 +00:00
[ALSA] drivers - Add missing snd_card_set_dev()
Added the missing call of snd_card_set_dev() in drivers/* Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
4f1895b0b5
commit
d47ac43383
@ -1312,6 +1312,8 @@ static int __devinit snd_ml403_ac97cr_probe(struct platform_device *pfdev)
|
||||
(unsigned long)ml403_ac97cr->port, ml403_ac97cr->irq,
|
||||
ml403_ac97cr->capture_irq, dev + 1);
|
||||
|
||||
snd_card_set_dev(card, &pfdev->dev);
|
||||
|
||||
err = snd_card_register(card);
|
||||
if (err < 0) {
|
||||
snd_card_free(card);
|
||||
|
@ -1008,6 +1008,8 @@ static int __devinit snd_mts64_probe(struct platform_device *pdev)
|
||||
|
||||
platform_set_drvdata(pdev, card);
|
||||
|
||||
snd_card_set_dev(card, &pdev->dev);
|
||||
|
||||
/* At this point card will be usable */
|
||||
if ((err = snd_card_register(card)) < 0) {
|
||||
snd_printd("Cannot register card\n");
|
||||
|
@ -797,6 +797,8 @@ static int __devinit snd_portman_probe(struct platform_device *pdev)
|
||||
|
||||
platform_set_drvdata(pdev, card);
|
||||
|
||||
snd_card_set_dev(card, &pdev->dev);
|
||||
|
||||
/* At this point card will be usable */
|
||||
if ((err = snd_card_register(card)) < 0) {
|
||||
snd_printd("Cannot register card\n");
|
||||
|
Loading…
Reference in New Issue
Block a user