diff options
Diffstat (limited to 'sound/pci/intel8x0m.c')
-rw-r--r-- | sound/pci/intel8x0m.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/sound/pci/intel8x0m.c b/sound/pci/intel8x0m.c index d689913a61be..fc27a6a69e77 100644 --- a/sound/pci/intel8x0m.c +++ b/sound/pci/intel8x0m.c | |||
@@ -1324,7 +1324,7 @@ static void __devexit snd_intel8x0m_remove(struct pci_dev *pci) | |||
1324 | pci_set_drvdata(pci, NULL); | 1324 | pci_set_drvdata(pci, NULL); |
1325 | } | 1325 | } |
1326 | 1326 | ||
1327 | static struct pci_driver driver = { | 1327 | static struct pci_driver intel8x0m_driver = { |
1328 | .name = KBUILD_MODNAME, | 1328 | .name = KBUILD_MODNAME, |
1329 | .id_table = snd_intel8x0m_ids, | 1329 | .id_table = snd_intel8x0m_ids, |
1330 | .probe = snd_intel8x0m_probe, | 1330 | .probe = snd_intel8x0m_probe, |
@@ -1335,16 +1335,4 @@ static struct pci_driver driver = { | |||
1335 | #endif | 1335 | #endif |
1336 | }; | 1336 | }; |
1337 | 1337 | ||
1338 | 1338 | module_pci_driver(intel8x0m_driver); | |
1339 | static int __init alsa_card_intel8x0m_init(void) | ||
1340 | { | ||
1341 | return pci_register_driver(&driver); | ||
1342 | } | ||
1343 | |||
1344 | static void __exit alsa_card_intel8x0m_exit(void) | ||
1345 | { | ||
1346 | pci_unregister_driver(&driver); | ||
1347 | } | ||
1348 | |||
1349 | module_init(alsa_card_intel8x0m_init) | ||
1350 | module_exit(alsa_card_intel8x0m_exit) | ||