diff options
-rw-r--r-- | sound/pci/ali5451/ali5451.c | 2 | ||||
-rw-r--r-- | sound/pci/echoaudio/echoaudio.c | 2 | ||||
-rw-r--r-- | sound/pci/riptide/riptide.c | 2 | ||||
-rw-r--r-- | sound/pci/rme9652/hdspm.c | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/sound/pci/ali5451/ali5451.c b/sound/pci/ali5451/ali5451.c index 9327ab2eccb0..ba7fa22b285d 100644 --- a/sound/pci/ali5451/ali5451.c +++ b/sound/pci/ali5451/ali5451.c | |||
@@ -2312,6 +2312,8 @@ static int __devinit snd_ali_create(struct snd_card *card, | |||
2312 | return err; | 2312 | return err; |
2313 | } | 2313 | } |
2314 | 2314 | ||
2315 | snd_card_set_dev(card, &pci->dev); | ||
2316 | |||
2315 | /* initialise synth voices*/ | 2317 | /* initialise synth voices*/ |
2316 | for (i = 0; i < ALI_CHANNELS; i++ ) { | 2318 | for (i = 0; i < ALI_CHANNELS; i++ ) { |
2317 | codec->synth.voices[i].number = i; | 2319 | codec->synth.voices[i].number = i; |
diff --git a/sound/pci/echoaudio/echoaudio.c b/sound/pci/echoaudio/echoaudio.c index 6a428b81dba6..e413da00759b 100644 --- a/sound/pci/echoaudio/echoaudio.c +++ b/sound/pci/echoaudio/echoaudio.c | |||
@@ -2033,6 +2033,8 @@ static int __devinit snd_echo_probe(struct pci_dev *pci, | |||
2033 | if (card == NULL) | 2033 | if (card == NULL) |
2034 | return -ENOMEM; | 2034 | return -ENOMEM; |
2035 | 2035 | ||
2036 | snd_card_set_dev(card, &pci->dev); | ||
2037 | |||
2036 | if ((err = snd_echo_create(card, pci, &chip)) < 0) { | 2038 | if ((err = snd_echo_create(card, pci, &chip)) < 0) { |
2037 | snd_card_free(card); | 2039 | snd_card_free(card); |
2038 | return err; | 2040 | return err; |
diff --git a/sound/pci/riptide/riptide.c b/sound/pci/riptide/riptide.c index 5e1d5d2b2850..952625dead58 100644 --- a/sound/pci/riptide/riptide.c +++ b/sound/pci/riptide/riptide.c | |||
@@ -1919,6 +1919,8 @@ snd_riptide_create(struct snd_card *card, struct pci_dev *pci, | |||
1919 | return err; | 1919 | return err; |
1920 | } | 1920 | } |
1921 | 1921 | ||
1922 | snd_card_set_dev(card, &pci->dev); | ||
1923 | |||
1922 | *rchip = chip; | 1924 | *rchip = chip; |
1923 | return 0; | 1925 | return 0; |
1924 | } | 1926 | } |
diff --git a/sound/pci/rme9652/hdspm.c b/sound/pci/rme9652/hdspm.c index e0215aca1193..6e95857e4e67 100644 --- a/sound/pci/rme9652/hdspm.c +++ b/sound/pci/rme9652/hdspm.c | |||
@@ -4468,6 +4468,8 @@ static int __devinit snd_hdspm_probe(struct pci_dev *pci, | |||
4468 | hdspm->dev = dev; | 4468 | hdspm->dev = dev; |
4469 | hdspm->pci = pci; | 4469 | hdspm->pci = pci; |
4470 | 4470 | ||
4471 | snd_card_set_dev(card, &pci->dev); | ||
4472 | |||
4471 | if ((err = | 4473 | if ((err = |
4472 | snd_hdspm_create(card, hdspm, precise_ptr[dev], | 4474 | snd_hdspm_create(card, hdspm, precise_ptr[dev], |
4473 | enable_monitor[dev])) < 0) { | 4475 | enable_monitor[dev])) < 0) { |