net/ethernet/dec/tulip/xircom_cb: Use module_pci_driver to register driver

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

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Reviewed-by: Grant Grundler <grundler@parisc-linux.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Peter Hüwe 2013-05-21 12:42:11 +00:00 committed by David S. Miller
parent 52a58f9df1
commit 31d60ebfbe

View File

@ -1171,16 +1171,4 @@ investigate_write_descriptor(struct net_device *dev,
}
}
static int __init xircom_init(void)
{
return pci_register_driver(&xircom_ops);
}
static void __exit xircom_exit(void)
{
pci_unregister_driver(&xircom_ops);
}
module_init(xircom_init)
module_exit(xircom_exit)
module_pci_driver(xircom_ops);