Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 31d60ebf authored by Peter Hüwe's avatar Peter Hüwe Committed by David S. Miller
Browse files

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: default avatarPeter Huewe <peterhuewe@gmx.de>
Reviewed-by: default avatarGrant Grundler <grundler@parisc-linux.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 52a58f9d
Loading
Loading
Loading
Loading
+1 −13
Original line number Diff line number Diff line
@@ -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);