Skip to content

Commit

Permalink
net/ethernet/chelsio/cxgb/cxgb2: Use module_pci_driver to register dr…
Browse files Browse the repository at this point in the history
…iver

Removing some boilerplate by using module_pci_driver instead of calling
register and unregister in the otherwise empty init/exit functions.

The name of the pci_driver struct had to be changed in order to prevent
a build failure.

Signed-off-by: Peter Huewe <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
PeterHuewe authored and davem330 committed May 22, 2013
1 parent 30d05f9 commit 65c2191
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions drivers/net/ethernet/chelsio/cxgb/cxgb2.c
Original file line number Diff line number Diff line change
Expand Up @@ -1351,22 +1351,11 @@ static void remove_one(struct pci_dev *pdev)
t1_sw_reset(pdev);
}

static struct pci_driver driver = {
static struct pci_driver cxgb_pci_driver = {
.name = DRV_NAME,
.id_table = t1_pci_tbl,
.probe = init_one,
.remove = remove_one,
};

static int __init t1_init_module(void)
{
return pci_register_driver(&driver);
}

static void __exit t1_cleanup_module(void)
{
pci_unregister_driver(&driver);
}

module_init(t1_init_module);
module_exit(t1_cleanup_module);
module_pci_driver(cxgb_pci_driver);

0 comments on commit 65c2191

Please sign in to comment.