atiixp.c (7eef4091a653c243a87e5375c54504cc03bec4d8) | atiixp.c (28d27aae9432c300857722a917be4065c6d7abff) |
---|---|
1/* 2 * ALSA driver for ATI IXP 150/200/250/300 AC97 controllers 3 * 4 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de> 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation; either version 2 of the License, or --- 273 unchanged lines hidden (view full) --- 282 int spdif_over_aclink; /* passed from the module option */ 283 struct mutex open_mutex; /* playback open mutex */ 284}; 285 286 287/* 288 */ 289static struct pci_device_id snd_atiixp_ids[] = { | 1/* 2 * ALSA driver for ATI IXP 150/200/250/300 AC97 controllers 3 * 4 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de> 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation; either version 2 of the License, or --- 273 unchanged lines hidden (view full) --- 282 int spdif_over_aclink; /* passed from the module option */ 283 struct mutex open_mutex; /* playback open mutex */ 284}; 285 286 287/* 288 */ 289static struct pci_device_id snd_atiixp_ids[] = { |
290 { 0x1002, 0x4341, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* SB200 */ 291 { 0x1002, 0x4361, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* SB300 */ 292 { 0x1002, 0x4370, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* SB400 */ 293 { 0x1002, 0x4382, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* SB600 */ | 290 { PCI_VDEVICE(ATI, 0x4341), 0 }, /* SB200 */ 291 { PCI_VDEVICE(ATI, 0x4361), 0 }, /* SB300 */ 292 { PCI_VDEVICE(ATI, 0x4370), 0 }, /* SB400 */ 293 { PCI_VDEVICE(ATI, 0x4382), 0 }, /* SB600 */ |
294 { 0, } 295}; 296 297MODULE_DEVICE_TABLE(pci, snd_atiixp_ids); 298 299static struct snd_pci_quirk atiixp_quirks[] __devinitdata = { 300 SND_PCI_QUIRK(0x15bd, 0x3100, "DFI RS482", 0), 301 { } /* terminator */ --- 1424 unchanged lines hidden --- | 294 { 0, } 295}; 296 297MODULE_DEVICE_TABLE(pci, snd_atiixp_ids); 298 299static struct snd_pci_quirk atiixp_quirks[] __devinitdata = { 300 SND_PCI_QUIRK(0x15bd, 0x3100, "DFI RS482", 0), 301 { } /* terminator */ --- 1424 unchanged lines hidden --- |