mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-14 10:19:08 +08:00
net: encx24j600: use module_spi_driver to simplify the code
module_spi_driver() makes the code simpler by eliminating boilerplate code. Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
a18f19e912
commit
4e92cac843
@@ -1117,17 +1117,7 @@ static struct spi_driver encx24j600_spi_net_driver = {
|
||||
.id_table = encx24j600_spi_id_table,
|
||||
};
|
||||
|
||||
static int __init encx24j600_init(void)
|
||||
{
|
||||
return spi_register_driver(&encx24j600_spi_net_driver);
|
||||
}
|
||||
module_init(encx24j600_init);
|
||||
|
||||
static void encx24j600_exit(void)
|
||||
{
|
||||
spi_unregister_driver(&encx24j600_spi_net_driver);
|
||||
}
|
||||
module_exit(encx24j600_exit);
|
||||
module_spi_driver(encx24j600_spi_net_driver);
|
||||
|
||||
MODULE_DESCRIPTION(DRV_NAME " ethernet driver");
|
||||
MODULE_AUTHOR("Jon Ringle <jringle@gridpoint.com>");
|
||||
|
||||
Reference in New Issue
Block a user