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:
@@ -564,16 +564,4 @@ static struct platform_driver mpc52xx_spi_of_driver = {
|
||||
.probe = mpc52xx_spi_probe,
|
||||
.remove = __devexit_p(mpc52xx_spi_remove),
|
||||
};
|
||||
|
||||
static int __init mpc52xx_spi_init(void)
|
||||
{
|
||||
return platform_driver_register(&mpc52xx_spi_of_driver);
|
||||
}
|
||||
module_init(mpc52xx_spi_init);
|
||||
|
||||
static void __exit mpc52xx_spi_exit(void)
|
||||
{
|
||||
platform_driver_unregister(&mpc52xx_spi_of_driver);
|
||||
}
|
||||
module_exit(mpc52xx_spi_exit);
|
||||
|
||||
module_platform_driver(mpc52xx_spi_of_driver);
|
||||
|
Reference in New Issue
Block a user