Commit a680b30a authored by Axel Lin's avatar Axel Lin Committed by David S. Miller

net/tokenring: use module_pci_driver

This patch converts the drivers in drivers/net/tokenring/* to use
module_pci_driver() macro which makes the code smaller and a bit simpler.
Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7f83560d
......@@ -1826,18 +1826,6 @@ static struct pci_driver xl_3c359_driver = {
.remove = __devexit_p(xl_remove_one),
};
static int __init xl_pci_init (void)
{
return pci_register_driver(&xl_3c359_driver);
}
static void __exit xl_pci_cleanup (void)
{
pci_unregister_driver (&xl_3c359_driver);
}
module_init(xl_pci_init);
module_exit(xl_pci_cleanup);
module_pci_driver(xl_3c359_driver);
MODULE_LICENSE("GPL") ;
......@@ -1904,14 +1904,6 @@ static struct pci_driver streamer_pci_driver = {
.remove = __devexit_p(streamer_remove_one),
};
static int __init streamer_init_module(void) {
return pci_register_driver(&streamer_pci_driver);
}
static void __exit streamer_cleanup_module(void) {
pci_unregister_driver(&streamer_pci_driver);
}
module_pci_driver(streamer_pci_driver);
module_init(streamer_init_module);
module_exit(streamer_cleanup_module);
MODULE_LICENSE("GPL");
......@@ -1732,18 +1732,6 @@ static struct pci_driver olympic_driver = {
.remove = __devexit_p(olympic_remove_one),
};
static int __init olympic_pci_init(void)
{
return pci_register_driver(&olympic_driver) ;
}
static void __exit olympic_pci_cleanup(void)
{
pci_unregister_driver(&olympic_driver) ;
}
module_init(olympic_pci_init) ;
module_exit(olympic_pci_cleanup) ;
module_pci_driver(olympic_driver);
MODULE_LICENSE("GPL");
......@@ -233,16 +233,4 @@ static struct pci_driver tms_pci_driver = {
.remove = __devexit_p(tms_pci_detach),
};
static int __init tms_pci_init (void)
{
return pci_register_driver(&tms_pci_driver);
}
static void __exit tms_pci_rmmod (void)
{
pci_unregister_driver (&tms_pci_driver);
}
module_init(tms_pci_init);
module_exit(tms_pci_rmmod);
module_pci_driver(tms_pci_driver);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment