Skip to content

Commit

Permalink
net/wan: use module_pci_driver
Browse files Browse the repository at this point in the history
This patch converts the drivers in drivers/net/wan/* to use
module_pci_driver() macro which makes the code smaller and a bit simpler.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Cc: Francois Romieu <romieu@fr.zoreil.com>
Cc: "David S. Miller" <davem@davemloft.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Axel Lin authored and David S. Miller committed Apr 14, 2012
1 parent a680b30 commit eff98db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 24 deletions.
13 changes: 1 addition & 12 deletions drivers/net/wan/dscc4.c
Original file line number Diff line number Diff line change
Expand Up @@ -2055,15 +2055,4 @@ static struct pci_driver dscc4_driver = {
.remove = __devexit_p(dscc4_remove_one),
};

static int __init dscc4_init_module(void)
{
return pci_register_driver(&dscc4_driver);
}

static void __exit dscc4_cleanup_module(void)
{
pci_unregister_driver(&dscc4_driver);
}

module_init(dscc4_init_module);
module_exit(dscc4_cleanup_module);
module_pci_driver(dscc4_driver);
13 changes: 1 addition & 12 deletions drivers/net/wan/lmc/lmc_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1736,18 +1736,7 @@ static struct pci_driver lmc_driver = {
.remove = __devexit_p(lmc_remove_one),
};

static int __init init_lmc(void)
{
return pci_register_driver(&lmc_driver);
}

static void __exit exit_lmc(void)
{
pci_unregister_driver(&lmc_driver);
}

module_init(init_lmc);
module_exit(exit_lmc);
module_pci_driver(lmc_driver);

unsigned lmc_mii_readreg (lmc_softc_t * const sc, unsigned devaddr, unsigned regno) /*fold00*/
{
Expand Down

0 comments on commit eff98db

Please sign in to comment.