diff options
author | Takashi Iwai <tiwai@suse.de> | 2012-05-21 06:51:35 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-05-21 06:51:35 -0400 |
commit | 382e6a859e6622de0aa62c01976ae8ebd90e986d (patch) | |
tree | 2501c554c231c5d0fcda7ff2e6e055bf23134d6f /sound/pci/hda | |
parent | 6de15b2a9330aeb5df9b66545f67c6c6ad2c045a (diff) | |
parent | 97f8d3b6503082416898f893a442a78f8819c42a (diff) |
Merge branch 'topic/misc' into for-linus
Diffstat (limited to 'sound/pci/hda')
-rw-r--r-- | sound/pci/hda/hda_intel.c | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index 7ee46aba6ea7..4ab8102f87ea 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c | |||
@@ -2566,6 +2566,8 @@ static struct snd_pci_quirk probe_mask_list[] __devinitdata = { | |||
2566 | /* forced codec slots */ | 2566 | /* forced codec slots */ |
2567 | SND_PCI_QUIRK(0x1043, 0x1262, "ASUS W5Fm", 0x103), | 2567 | SND_PCI_QUIRK(0x1043, 0x1262, "ASUS W5Fm", 0x103), |
2568 | SND_PCI_QUIRK(0x1046, 0x1262, "ASUS W5F", 0x103), | 2568 | SND_PCI_QUIRK(0x1046, 0x1262, "ASUS W5F", 0x103), |
2569 | /* WinFast VP200 H (Teradici) user reported broken communication */ | ||
2570 | SND_PCI_QUIRK(0x3a21, 0x040d, "WinFast VP200 H", 0x101), | ||
2569 | {} | 2571 | {} |
2570 | }; | 2572 | }; |
2571 | 2573 | ||
@@ -3154,7 +3156,7 @@ static DEFINE_PCI_DEVICE_TABLE(azx_ids) = { | |||
3154 | MODULE_DEVICE_TABLE(pci, azx_ids); | 3156 | MODULE_DEVICE_TABLE(pci, azx_ids); |
3155 | 3157 | ||
3156 | /* pci_driver definition */ | 3158 | /* pci_driver definition */ |
3157 | static struct pci_driver driver = { | 3159 | static struct pci_driver azx_driver = { |
3158 | .name = KBUILD_MODNAME, | 3160 | .name = KBUILD_MODNAME, |
3159 | .id_table = azx_ids, | 3161 | .id_table = azx_ids, |
3160 | .probe = azx_probe, | 3162 | .probe = azx_probe, |
@@ -3165,15 +3167,4 @@ static struct pci_driver driver = { | |||
3165 | #endif | 3167 | #endif |
3166 | }; | 3168 | }; |
3167 | 3169 | ||
3168 | static int __init alsa_card_azx_init(void) | 3170 | module_pci_driver(azx_driver); |
3169 | { | ||
3170 | return pci_register_driver(&driver); | ||
3171 | } | ||
3172 | |||
3173 | static void __exit alsa_card_azx_exit(void) | ||
3174 | { | ||
3175 | pci_unregister_driver(&driver); | ||
3176 | } | ||
3177 | |||
3178 | module_init(alsa_card_azx_init) | ||
3179 | module_exit(alsa_card_azx_exit) | ||