drivercore: Add helper macro for platform_driver boilerplate
For simple modules that contain a single platform_driver without any additional setup code then ends up being a block of duplicated boilerplate. This patch adds a new macro, module_platform_driver(), which replaces the module_init()/module_exit() registrations with template functions. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: Greg Kroah-Hartman <gregkh@suse.de> Reviewed-by: Magnus Damm <magnus.damm@gmail.com> Reviewed-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Reviewed-by: Stephen Boyd <sboyd@codeaurora.org>
This commit is contained in:
@@ -511,18 +511,7 @@ static struct platform_driver mpc52xx_psc_spi_of_driver = {
|
||||
.of_match_table = mpc52xx_psc_spi_of_match,
|
||||
},
|
||||
};
|
||||
|
||||
static int __init mpc52xx_psc_spi_init(void)
|
||||
{
|
||||
return platform_driver_register(&mpc52xx_psc_spi_of_driver);
|
||||
}
|
||||
module_init(mpc52xx_psc_spi_init);
|
||||
|
||||
static void __exit mpc52xx_psc_spi_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&mpc52xx_psc_spi_of_driver);
|
||||
}
|
||||
module_exit(mpc52xx_psc_spi_exit);
|
||||
module_platform_driver(mpc52xx_psc_spi_of_driver);
|
||||
|
||||
MODULE_AUTHOR("Dragos Carp");
|
||||
MODULE_DESCRIPTION("MPC52xx PSC SPI Driver");
|
||||
|
Reference in New Issue
Block a user