Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 300746
b: refs/heads/master
c: a680b30
h: refs/heads/master
v: v3
  • Loading branch information
Axel Lin authored and David S. Miller committed Apr 14, 2012
1 parent 65b6295 commit a22cff7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 49 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7f83560df2b51d41fbc77c7b204b3f5c2ad6765a
refs/heads/master: a680b30a53668e299d487117ded7b76a069abc77
14 changes: 1 addition & 13 deletions trunk/drivers/net/tokenring/3c359.c
Original file line number Diff line number Diff line change
Expand Up @@ -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") ;
10 changes: 1 addition & 9 deletions trunk/drivers/net/tokenring/lanstreamer.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
14 changes: 1 addition & 13 deletions trunk/drivers/net/tokenring/olympic.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
14 changes: 1 addition & 13 deletions trunk/drivers/net/tokenring/tmspci.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

0 comments on commit a22cff7

Please sign in to comment.