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

Commit 01b88070 authored by Lars-Peter Clausen's avatar Lars-Peter Clausen Committed by Marc Kleine-Budde
Browse files

can: mcp251x: Use module_spi_driver



By using module_spi_driver we can eliminate a few lines of boilerplate code.

Signed-off-by: default avatarLars-Peter Clausen <lars@metafoo.de>
Signed-off-by: default avatarMarc Kleine-Budde <mkl@pengutronix.de>
parent 4c2e33f0
Loading
Loading
Loading
Loading
+1 −13
Original line number Diff line number Diff line
@@ -1216,19 +1216,7 @@ static struct spi_driver mcp251x_can_driver = {
	.suspend = mcp251x_can_suspend,
	.resume = mcp251x_can_resume,
};

static int __init mcp251x_can_init(void)
{
	return spi_register_driver(&mcp251x_can_driver);
}

static void __exit mcp251x_can_exit(void)
{
	spi_unregister_driver(&mcp251x_can_driver);
}

module_init(mcp251x_can_init);
module_exit(mcp251x_can_exit);
module_spi_driver(mcp251x_can_driver);

MODULE_AUTHOR("Chris Elston <celston@katalix.com>, "
	      "Christian Pellegrin <chripell@evolware.org>");