aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/intel8x0m.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2012-04-24 06:25:00 -0400
committerTakashi Iwai <tiwai@suse.de>2012-04-24 06:25:00 -0400
commite9f66d9b9ce03f74a52894cebedf12b67f65dd24 (patch)
tree6fc07ea37548ac3c9f808ee25c10fcfeb34236ea /sound/pci/intel8x0m.c
parent68853fa30cdb6a9a92f7ab46c34aedb24b2f9d56 (diff)
ALSA: pci: clean up using module_pci_driver()
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/intel8x0m.c')
-rw-r--r--sound/pci/intel8x0m.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/sound/pci/intel8x0m.c b/sound/pci/intel8x0m.c
index d689913a61b..fc27a6a69e7 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
1327static struct pci_driver driver = { 1327static 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 1338module_pci_driver(intel8x0m_driver);
1339static int __init alsa_card_intel8x0m_init(void)
1340{
1341 return pci_register_driver(&driver);
1342}
1343
1344static void __exit alsa_card_intel8x0m_exit(void)
1345{
1346 pci_unregister_driver(&driver);
1347}
1348
1349module_init(alsa_card_intel8x0m_init)
1350module_exit(alsa_card_intel8x0m_exit)