au88x0.c (1da177e4c3f41524e886b7f1b8a0c1fc7321cac2) au88x0.c (01d25d460a3b28aab537fab9a0038d1b5832ce28)
1/*
2 * ALSA driver for the Aureal Vortex family of soundprocessors.
3 * Author: Manuel Jander (mjander@embedded.cl)
4 *
5 * This driver is the result of the OpenVortex Project from Savannah
6 * (savannah.nongnu.org/projects/openvortex). I would like to thank
7 * the developers of OpenVortex, Jeff Muizelaar and Kester Maddock, from
8 * whom i got plenty of help, and their codebase was invaluable.

--- 361 unchanged lines hidden (view full) ---

370 .id_table = snd_vortex_ids,
371 .probe = snd_vortex_probe,
372 .remove = __devexit_p(snd_vortex_remove),
373};
374
375// initialization of the module
376static int __init alsa_card_vortex_init(void)
377{
1/*
2 * ALSA driver for the Aureal Vortex family of soundprocessors.
3 * Author: Manuel Jander (mjander@embedded.cl)
4 *
5 * This driver is the result of the OpenVortex Project from Savannah
6 * (savannah.nongnu.org/projects/openvortex). I would like to thank
7 * the developers of OpenVortex, Jeff Muizelaar and Kester Maddock, from
8 * whom i got plenty of help, and their codebase was invaluable.

--- 361 unchanged lines hidden (view full) ---

370 .id_table = snd_vortex_ids,
371 .probe = snd_vortex_probe,
372 .remove = __devexit_p(snd_vortex_remove),
373};
374
375// initialization of the module
376static int __init alsa_card_vortex_init(void)
377{
378 return pci_module_init(&driver);
378 return pci_register_driver(&driver);
379}
380
381// clean up the module
382static void __exit alsa_card_vortex_exit(void)
383{
384 pci_unregister_driver(&driver);
385}
386
387module_init(alsa_card_vortex_init)
388module_exit(alsa_card_vortex_exit)
379}
380
381// clean up the module
382static void __exit alsa_card_vortex_exit(void)
383{
384 pci_unregister_driver(&driver);
385}
386
387module_init(alsa_card_vortex_init)
388module_exit(alsa_card_vortex_exit)