File tree Expand file tree Collapse file tree 2 files changed +6
-29
lines changed Expand file tree Collapse file tree 2 files changed +6
-29
lines changed Original file line number Diff line number Diff line change @@ -693,29 +693,17 @@ static struct pci_device_id pci_table[] __devinitdata = {
693693 { } /* Terminating entry */
694694};
695695
696+ MODULE_DEVICE_TABLE (pci , pci_table );
697+
696698static struct pci_driver lynx_pci_driver = {
697699 .name = driver_name ,
698700 .id_table = pci_table ,
699701 .probe = add_card ,
700702 .remove = remove_card ,
701703};
702704
705+ module_pci_driver (lynx_pci_driver );
706+
703707MODULE_AUTHOR ("Kristian Hoegsberg" );
704708MODULE_DESCRIPTION ("Snoop mode driver for TI pcilynx 1394 controllers" );
705709MODULE_LICENSE ("GPL" );
706- MODULE_DEVICE_TABLE (pci , pci_table );
707-
708- static int __init nosy_init (void )
709- {
710- return pci_register_driver (& lynx_pci_driver );
711- }
712-
713- static void __exit nosy_cleanup (void )
714- {
715- pci_unregister_driver (& lynx_pci_driver );
716-
717- pr_info ("Unloaded %s\n" , driver_name );
718- }
719-
720- module_init (nosy_init );
721- module_exit (nosy_cleanup );
Original file line number Diff line number Diff line change @@ -3789,6 +3789,8 @@ static struct pci_driver fw_ohci_pci_driver = {
37893789#endif
37903790};
37913791
3792+ module_pci_driver (fw_ohci_pci_driver );
3793+
37923794MODULE_AUTHOR ("Kristian Hoegsberg <krh@bitplanet.net>" );
37933795MODULE_DESCRIPTION ("Driver for PCI OHCI IEEE1394 controllers" );
37943796MODULE_LICENSE ("GPL" );
@@ -3797,16 +3799,3 @@ MODULE_LICENSE("GPL");
37973799#ifndef CONFIG_IEEE1394_OHCI1394_MODULE
37983800MODULE_ALIAS ("ohci1394" );
37993801#endif
3800-
3801- static int __init fw_ohci_init (void )
3802- {
3803- return pci_register_driver (& fw_ohci_pci_driver );
3804- }
3805-
3806- static void __exit fw_ohci_cleanup (void )
3807- {
3808- pci_unregister_driver (& fw_ohci_pci_driver );
3809- }
3810-
3811- module_init (fw_ohci_init );
3812- module_exit (fw_ohci_cleanup );
You can’t perform that action at this time.
0 commit comments