Browse Source

[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>
Takashi Iwai 17 years ago
parent
commit
d47ac43383
3 changed files with 6 additions and 0 deletions
  1. 2 0
      sound/drivers/ml403-ac97cr.c
  2. 2 0
      sound/drivers/mts64.c
  3. 2 0
      sound/drivers/portman2x4.c

+ 2 - 0
sound/drivers/ml403-ac97cr.c

@@ -1312,6 +1312,8 @@ static int __devinit snd_ml403_ac97cr_probe(struct platform_device *pfdev)
 		(unsigned long)ml403_ac97cr->port, ml403_ac97cr->irq,
 		(unsigned long)ml403_ac97cr->port, ml403_ac97cr->irq,
 		ml403_ac97cr->capture_irq, dev + 1);
 		ml403_ac97cr->capture_irq, dev + 1);
 
 
+	snd_card_set_dev(card, &pfdev->dev);
+
 	err = snd_card_register(card);
 	err = snd_card_register(card);
 	if (err < 0) {
 	if (err < 0) {
 		snd_card_free(card);
 		snd_card_free(card);

+ 2 - 0
sound/drivers/mts64.c

@@ -1008,6 +1008,8 @@ static int __devinit snd_mts64_probe(struct platform_device *pdev)
 
 
 	platform_set_drvdata(pdev, card);
 	platform_set_drvdata(pdev, card);
 
 
+	snd_card_set_dev(card, &pdev->dev);
+
 	/* At this point card will be usable */
 	/* At this point card will be usable */
 	if ((err = snd_card_register(card)) < 0) {
 	if ((err = snd_card_register(card)) < 0) {
 		snd_printd("Cannot register card\n");
 		snd_printd("Cannot register card\n");

+ 2 - 0
sound/drivers/portman2x4.c

@@ -797,6 +797,8 @@ static int __devinit snd_portman_probe(struct platform_device *pdev)
 
 
 	platform_set_drvdata(pdev, card);
 	platform_set_drvdata(pdev, card);
 
 
+	snd_card_set_dev(card, &pdev->dev);
+
 	/* At this point card will be usable */
 	/* At this point card will be usable */
 	if ((err = snd_card_register(card)) < 0) {
 	if ((err = snd_card_register(card)) < 0) {
 		snd_printd("Cannot register card\n");
 		snd_printd("Cannot register card\n");