diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2008-01-21 02:45:37 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2008-01-31 11:30:06 -0500 |
commit | 44fb7aae82b37f5bb66cb1423e2babb11d90969e (patch) | |
tree | 031a965cf320c285f811e5b3de17152984ee4abf /sound/pci/oxygen/virtuoso.c | |
parent | db2396d4959340dbe2b617bde3beb2268f1e3658 (diff) |
[ALSA] oxygen: remove MIDI autodetection
The MIDI bit in the MISC register is set by default and cannot be used
to detect the presence of a MIDI port. Instead, add a parameter to the
oxygen_pci_probe() function so that model drivers can specify this.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to 'sound/pci/oxygen/virtuoso.c')
-rw-r--r-- | sound/pci/oxygen/virtuoso.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/oxygen/virtuoso.c b/sound/pci/oxygen/virtuoso.c index 1a0367b7ae35..73975711c074 100644 --- a/sound/pci/oxygen/virtuoso.c +++ b/sound/pci/oxygen/virtuoso.c | |||
@@ -266,7 +266,7 @@ static int __devinit xonar_probe(struct pci_dev *pci, | |||
266 | ++dev; | 266 | ++dev; |
267 | return -ENOENT; | 267 | return -ENOENT; |
268 | } | 268 | } |
269 | err = oxygen_pci_probe(pci, index[dev], id[dev], &model_xonar); | 269 | err = oxygen_pci_probe(pci, index[dev], id[dev], 1, &model_xonar); |
270 | if (err >= 0) | 270 | if (err >= 0) |
271 | ++dev; | 271 | ++dev; |
272 | return err; | 272 | return err; |